c++ - winapi get the mangled name from a function's address -


in c++ applicatoin have virtual addresses of functions , want mangled names. right can unmangled name using winapi symfromaddr function. there way mangled names ?

use symsetoptions(). want turn off symopt_undname option see mangled name.

so, roughly:

  dword options = symgetoptions();   symsetoptions(options & ~symopt_undname);   if (symfromaddr(hprocess, dwaddress, &dwdisplacement, psymbol))   {       // etc...   }   symsetoptions(options); 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -