Quote:
Originally Posted by GeoffR
That string is (part of) a mangled C++ function name. A disassembler can unmangle the name.
Mangled name: _ZN15DemoModeManager12exitDemoModeEv
Original name: DemoModeManager::exitDemoMode()
It won't do any good to change the name, but you can use it to locate the code for the named function, and it tells you what arguments the function takes (none in this case.)
|
What kind of disassembler do I need to do that?