Quote:
Originally Posted by Nemo1984
EDIT: I have found some interesting strings in libnickel.so.1.0.0
DemoModeManager12exitDemoModeEvDemoModeManager12ex itDemoModeEv
|
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.)