0

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

(I want to know how it works)

Deduplicator
  • 44,692
  • 7
  • 66
  • 118
Bruno
  • 8,497
  • 13
  • 38
  • 55

1 Answers1

3

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.

Community
  • 1
  • 1
Paul Dixon
  • 295,876
  • 54
  • 310
  • 348