Closed GoogleCodeExporter closed 9 years ago
This is normal. What you're seeing are C++ mangled names (described here:
http://en.wikipedia.org/wiki/Visual_C%2B%2B_name_mangling ). Pdbparse contains
a demangler (borrowed from the Wine project); have a look at
pdbparse/undname.py (which depends on src/undname.c). These were added in
revision #97, so you may have to update.
The specific example you gave resolves to `string', which unfortunately isn't
very useful, but it's what the official undname.exe from Microsoft would give
you.
Original comment by moo...@gmail.com
on 30 Apr 2013 at 2:42
Excellent, thanks!
Original comment by tamas.k....@gmail.com
on 30 Apr 2013 at 2:52
Original issue reported on code.google.com by
tamas.k....@gmail.com
on 30 Apr 2013 at 1:27