Hi!
I'm trying to get undecorated symbols using "dbgHelp".
I'm getting the symbol's name with "SymGetSymFromAddr64" but instead of getting
something like: "Foo(int f)"
I'm getting just "Foo" as the symbol's name.
I'm calling it with:
SymGetSymFromAddr64(processHandle, address, &displacement, pSymbol);
and I initialize it with the options:
SYMOPT_DEBUG;
SYMOPT_LOAD_LINES;
SYMOPT_FAIL_CRITICAL_ERRORS;
what's wrong with it? :)