Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
2k views

Capturing R6025 pure virtual call

I currently capture MiniDumps of unhandled exceptions using SetUnhandledExceptionFilter however at times I am getting "R6025: pure virtual function". I understand how a pure virtual function call ...
5
votes
2answers
615 views

Is DbgHelp.dll built-in to Windows? Can I rely on it being there?

I use Jochen Kalmbach's StackWalker class from CodeProject, to produce a stacktrace when an exception occurs in my DLL. It relies on DbgHelp.dll Is DbgHelp.dll built-in to Windows Vista, WS2008, ...
5
votes
4answers
644 views

Where do I find the list of unloaded modules in a Windows process?

I have some native (as in /SUBSYSTEM:NATIVE) Windows programs that I'd like to generate minidumps for in case they crash. Normally, I'd use dbghelp.dll, but since native processes can only use ...
4
votes
3answers
1k views

What is the format (schema) of .NET PDB files?

What is the format (schema) of .NET PDB files? I'd like to parse the information out of these files so that I can display the correct lines of code (line numbers) in a debugging application.
4
votes
3answers
4k views

How do I obtain a stack trace on Windows without using dbghelp.dll?

How do I obtain a stack trace of addresses on Windows without using dbghelp.dll? I don't need to know what the symbols or function names associated with the addresses, I just want the list of ...
3
votes
2answers
307 views

How do you use SymLoadModuleEx to load a PDB file?

I'm trying to call SymLoadModuleEx to load the symbols from a PDB file and then use SymFromAddr to look up symbols from that PDB. However, I can't figure out what to pass for the parameters BaseOfDll ...
2
votes
1answer
34 views

I am looking for a C++ library which processes debug symbols out of a .PDB document

Creating a module that will decode structures defined in a PDB document; can anyone provide me with a module that would extract the required debugging symbols from the PDB document? Thanks.
2
votes
1answer
189 views

How do you walk a mixed-mode (managed+native) stack with dbghelp!StackWalk64?

I'm trying to walk a callstack that contains both managed and native frames on a x64 process using StackWalk64. Everything works fine until the first or second managed frame, after which StackWalk64 ...
1
vote
1answer
96 views

Getting debug symbol's module name

Is there a way to get the module's name of a debug symbol obtained by using dbgHelp in C++/Windows? thanks :)
1
vote
1answer
330 views

Viewing export table on an unmanaged dll in C#

I am currently trying to create a C# application that will allow me to view the export table from an unmanaged DLL. My problem is, once I have all the pointers I need, I have no idea how to loop ...
1
vote
3answers
876 views

How to programatically read native DLL imports in C#?

How can I programatically analyze a native DLL to read its imports? [EDIT: my original question looked like the following, along with a huge chunk of defective code. Please see answers below for ...
1
vote
0answers
30 views

How to get value of Global symbol of type _GUID from DIA SDK?

I know the name of guid symbol(i.e IID_SomeInterface) from pdb file and its base types,RVAs and VAs, but want to know the exact value of this guid. Can it be obtained without executing/running the ...
1
vote
1answer
111 views

How to track down which app is injecting dbghelp into all other processes?

It appears that on a particular system, dbghelp.dll is being loaded into all processes. Since I believe this to not be normal behavior, I am guessing that it is being injected by some other ...
1
vote
1answer
254 views

DBGHelp.dll causes load of msvcrt.dll in debug version

My application compiles with VC6 sp6, uses DBGHelp.lib to get stack information. The code is simmilar in debug and release compilations. The problem is that when executing the debug version, ...
1
vote
2answers
565 views

How to get field names and offsets of a struct using dbghlp and pdb

I would like to dump the fields and offsets of structures in the same way as windbg's dt command. Let's say for example I would like to dump the _PEB structure which is in the Microsoft Public symbols ...
1
vote
3answers
613 views

Why don't Minidumps give good call stacks?

I've used minidumps on many game projects over the years and they seem to have about a 50% chance of having a valid call stack. What can I do to make them have better call stacks? I've tried putting ...
0
votes
1answer
81 views

StackWalk64() returns a single frame

When trying to obtain the call stack of a thread of some process, I always get a single same frame, although it is for sure has more (at least 5 frames). StackWalk64() always succeeds on the first ...
0
votes
2answers
87 views

SymLoadModule64 and GetCurrentProcess from C#

I want to use the dbghelp library to get some type and program information from a pdb file. Now, because I like C# much more than C++, I'm currently trying to get it working from within C#. I'm ...
0
votes
1answer
159 views

Problems with opening a process with DEBUG flags

I'm trying to open a process with my debugger using CreateProcess with the DEBUG_PROCESS and DEBUG_ONLY_THIS_PROCESS flags and the the process is opened, but then when I try to call SymInitialize with ...
0
votes
1answer
163 views

How to extract stack traces from minidumps?

I've got a whole bunch of minidumps which were recorded during the runtime of an application through MiniDumpWriteDump. The minidumps were created on a machine with a different OS version than my ...
0
votes
1answer
119 views

Dbghelp.dll and local symbols

I'm developing a user-mode (Ring3) code-level debugger. It should be able to read and use the debugging information from the .pdb files. Processing of static variables is easy. But when dbghelp.dll ...
0
votes
2answers
84 views

DBGhost settings xml

I am working on a demo build server that will automate build and deployment processes. I am attempting to automate the merging of database changes to an existing database without compromising static ...
0
votes
2answers
286 views

c++ & Context structure

Does anybody know where I can find some information about the fields of the CONTEXT structure in C++? thanks :)
0
votes
1answer
87 views

using a .dll function to produce a minidump where application is not made by Visual Studio

I have a .dll file produced with Visual Studio 2005 (unmanaged C++). In various functions within the DLL, I can detect errors and call another function within the DLL to produce a minidump (using ...
0
votes
2answers
583 views

Listing the exported functions of a DLL

I'm looking for a way (in C++/Windows) to list the exported functions in a DLL (and maybe even methods which are not exported) using dbgHelp. Does anybody know which method can do it? thanks :)
0
votes
1answer
104 views

dbgHelp new version

I want to upgrade my DbgHelp version from 5.1 to 6.11 (i heard that 5.1 is kind of buggy) so I downloaded "Debugging tools for windows" because that's where the dbgHelp is supposed to be but when I ...
0
votes
1answer
35 views

Why DIA SDK get_guid always returns Bad ptr(0x000) for Class guid?

I am using DIA SDK for enumerating types and interfaces of COM binaries(dlls/exes). But get_guid always returns Bad Ptr(0x0000) for every Class(CoClass & Interface) used inside that component? ...
0
votes
2answers
210 views

Can we calculate/extract Virtual Table address some how from DIA SDK?

Can we extract vtable's starting base address of a type if it implements vtable functions from DIA SDK? Regards, Usman
0
votes
1answer
58 views

How to filter non kernel(User imported) dll's from DIA SDK?

I need to specifically filter all user imported dll's. DIA SDK gives all modules under SymTagCompiland which includes all kernel and other imports those are not explicitly linked. I only need those ...
0
votes
0answers
185 views

Can we check alignment of user defined struct in C++?

Can any body tell how can I query the pdb file from DIA SDK about a given struct used in the code is 4KB aligned or 8KB aligned or what would be its exact alignment was...? From DIA SDK, we can query ...
0
votes
1answer
142 views

Need to get List of C++ Kernel Types?

Respectfully!! I need complete list of kernel types such as "CRITICAL_SECTION", "_LARGE_INTEGER" or "_SECURITY_ATTRIBUTES". Basically I am extracting all the data members of class given class name as ...
0
votes
1answer
126 views

Do Pdb files contains public function's arguments name?

I need to look up function argument names of public methods. Types are easily available from PDB symbols and DIA symbols, but is there any way out by which we can trace and pull out function argument ...