In my c++ applicatoin I have the virtual addresses of functions and I want to get their mangled names.
right now I can get only the unmangled name by using the winapi SymFromAddr
function.
is there a way to get the mangled names also ?
winapi get the mangled name from a function's address
446 views Asked by max At
1
Use SymSetOptions(). You want to turn off the
SYMOPT_UNDNAME
option to see the mangled name.So, roughly: