Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
134 views

How do I extract a user stream from a WinDbg extension?

I have embedded a custom stream in a dump (i.e. passed the UserStreamParam argument to MiniDumpWriteDump function). Now, I'm trying to extract the stream from a WinDbg extension. (Note that I have ...
2
votes
2answers
564 views

WinDbg, display Symbol Server paths of loaded modules (even if the symbols did not load)?

Is there a way from WinDbg, without using the DbgEng API, to display the symbol server paths (i.e. PdbSig70 and PdbAge) for all loaded modules? I know that lml does this for the modules whose ...
1
vote
1answer
100 views

Can I use DbgEng extension DLL in custom application?

I am curious can I use DbgEng extension without WinDbg. For example is it possible to use DbgEng extension from managed .NET application? Regards, Remsy
1
vote
1answer
194 views

IDebugSymbols::GetNameByOffset and overloaded functions

I'm using IDebugSymbols::GetNameByOffset and I'm finding that I get the same symbol name for different functions that overload the same name. E.g. The code I'm looking up the symbols for might be as ...
0
votes
1answer
21 views

Can't get windbg to recognise my extension

Unfortunately, for some reason I cannot fathom, I haven't been able to get windbg to recognise my extension. #ifndef EXPT_API #define EXPT_API __declspec(dllexport) #endif extern "C" EXPT_API ...
0
votes
1answer
159 views

dbgeng - load extension dlls in c++?

I have written one application in which I load one system wide crash dump using dbgeng.dll. I want to use some of the WinDbg commands like (!vad) - for that I need other dll's like exts.dll, ext.dll, ...
0
votes
1answer
795 views

How do I debug Illegal Instruction exception?

I'm getting this exception when trying to use dbgeng from mdbglib: First-chance exception at 0x037ba4f4 (dbgeng.dll) in ASDumpAnalyzer.exe: 0xC000001D: Illegal Instruction. I'm wondering how to go ...
0
votes
1answer
245 views

IDebugControl::WaitForEvent works once then returns E_HANDLE

I'm trying to make a small tool that makes use of the Debugger Engine API, but I'm having very limited success. I can get my IDebugClient and IDebugControl instances, and from there I am able to ...