dbghelp is the short name of the Microsoft Debug Help library.

learn more… | top users | synonyms

0
votes
0answers
28 views

How to solve Microsoft Sysinternal's procdump error “Unable to import the 'MiniDumpWriteDump' function from debug help.”

I have a Windows XP system with procdump (http://technet.microsoft.com/en-us/sysinternals/dd996900.aspx) and I installed it as AeDebug post mortem debugger. When the process I was interested in ...
-1
votes
0answers
22 views

Where can I find a specific pdb file?

I am using dbghelp.dll and symsrv.dll to debug a remote DX11 application. Unfortunately, my project complains that it cannot find dxgi.pdb (as well as a few other debug files), so my code always ...
0
votes
0answers
56 views

PDB files not loading

Our application has some add-ons in the form of DLLs in nested directories. We are running tests with an instance of DbgView running in the background via which we get our logs. The problem is we run ...
0
votes
0answers
56 views

How to access the PEB (process environment block) in dump using DbgHelp

I found an example that uses the debugger engine API to get at the PEB in a dump. Is this possible using DbgHelp? Have existing code that uses DbgHelp to pull out comment and exception information. ...
0
votes
0answers
65 views

Windows corrupt minidump

When my program crashes it creates a minidump, from the unhandled exception handler. The issue I'm having is that people are sending me crash dumps, but when I try to open them in Visual Studio 2010 ...
2
votes
1answer
97 views

How to enable Microsoft Symbol Server in OlyDbg?

OlyDbg version 2 was recently released. It now supports using the Microsoft Symbol Server for debugging: It supports Microsoft compilers via dbghelp.dll. New is support for symbol server, stack ...
1
vote
1answer
63 views

Undecorated Microsoft Symbol: SomeClass::`vftable'{for `Foo::Bar'}

I'm using UnDecorateSymbolNameW from dbghelp to un-decorate Microsoft symbol names. When undecorating with UNDNAME_COMPLETE, the symbol name can sometimes have, what I understand to be, some compiler ...
9
votes
1answer
263 views

How to get the EXCEPTION_POINTERS during an EExternal exception?

How do i get the EXCEPTION_POINTERS, i.e. both: PEXCEPTION_RECORD and PCONTEXT data during an EExternal exception? Background When Windows throws an exception, it passes a PEXCEPTION_POINTERS; ...
3
votes
1answer
113 views

function address in .pdb is different from .exe,why?

i read the address of my main function from .pdb file by SymEnumSymbols,the value is 0x0100116e0 , BOOL CALLBACK SymEnumSymbolsProc(PSYMBOL_INFO pSymInfo, ULONG SymbolSize, PVOID UserContext ) ...
0
votes
1answer
86 views

Windows PDB file contains multiple symbols for same address? [duplicate]

Possible Duplicate: Why two functions print the same address? I am working with PDB symbol files for an application which processes them (via the DbgHelp API). I have come across a strange ...
0
votes
0answers
30 views

WaitForDebugEvent and File Handle = 0

I'm catching debug events using WaitForDebugEvent. I get most of the events as they should be but sometimes om LOAD_DLL_DEBUG_EVENT events or CREATE_PROCESS_DEBUG_EVENT I see that the received File ...
0
votes
1answer
43 views

How to store debug symbols and binaries side-by-side

Recently I noticed that when downloading symbols from Microsoft symbol store using SymChk it brings DLLs as well as PDBs. I'm wondering if it is possible to store both binaries and symbols using ...
1
vote
2answers
143 views

Debugging (Win): DIA versus DBGHELP

Short and concise: What are the actual differences between DIA (Debug Interface Access) and the DBGHELP libraries? I know that DIA is COM based and seems to be extremely powerful (as well as able to ...
0
votes
1answer
57 views

How can I detect the version of DbgHelp at compile time?

The reference manual for DbgHelp nicely lists all the versions and what changes they introduced. How can I detect the version at compile time?
2
votes
1answer
70 views

Efficient way to get name/MT of ValueTypes not listed in !dumpheap -stat

I'm working my way around the SOS commands and their output, but I noticed there doesn't seem to be a way to get really all types that are currently in use somehow. The best way so far is !dumpheap ...
1
vote
1answer
445 views

Unresolved symbol errors within DLL

For background, I have come across this porting a medium-sized linux codebase (compiling into a giant .so) to x64 windows (compiling into a .dll). I have had linker trouble. As a minimal testcase, ...
0
votes
1answer
661 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
304 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
472 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 ...
2
votes
1answer
97 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.
1
vote
1answer
712 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 ...
1
vote
1answer
187 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 :)
2
votes
1answer
348 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 ...
0
votes
1answer
219 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
180 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 ...
4
votes
2answers
847 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
2answers
819 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
2k 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 ...
0
votes
2answers
872 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
152 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 ...
2
votes
2answers
3k 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
183 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 ...
1
vote
0answers
56 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 ...
0
votes
1answer
57 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
1answer
308 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
83 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
257 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 ...
1
vote
1answer
189 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
373 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, ...
0
votes
1answer
164 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
220 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 ...
1
vote
2answers
947 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 ...
5
votes
2answers
1k 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, ...
1
vote
3answers
1k 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 ...
5
votes
4answers
838 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
2k 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.
5
votes
3answers
7k 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 ...
10
votes
3answers
4k 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 ...