3

To undecorate mangled C++ names that Visual Studio generates, you can use undname.exe.

But what if you want to avoid the overhead of creating a full-blown process every time you need undecoration?
Is there any equivalent functionality in the Visual Studio SDK (should be supported in VS2005)?

Georg Fritzsche
  • 97,545
  • 26
  • 194
  • 236

1 Answers1

9

You're looking for UnDecorateSymbolName function provided by dbghelp.

avakar
  • 32,009
  • 9
  • 68
  • 103