On Fri, 30 Jul 2004 17:17:42 -0700, Dan Timis wrote:
Someone sent me a debug version of a Windows dll and a map file. I'm not a Windows programmer, and I'm not sure how to use the map fiile. For instance, I get a runtime error dialog. With backtrace in winedbg I get this:
Another technique you could use is a +relay,+snoop,+seh,+tid trace, that way you can see the calls being made just before the crash.
Are there any tools that could help understand better what's going on? Are there any tools to demangle the C++ names? I tried c++filt and not surprisingly it did not understand these symbols.
winedump can demangle MSVC++ symbol names.
thanks -mike