Search code examples
mfcreverse-engineeringdecompiling

Open MFC application to get source-code


Does someone know how to open an MFC application to get the source-code?

(I want to know how it works)


Solution

  • MFC is compiled from C++ source, so it can't be recovered. You can use a decompiler on it, but the source you get back won't be particularly instructive.

    There's a good related question on debugging, disassembling and decompiling you can check for more links.