Windbg: Can I integrate the Windgb engine into my own program?

I would like to write a debugging / diagnostic tool that can call Windbg functions to check the dump file instead of writing the windbg extension. Is this possible and any links?

Many thanks.

+3
source share
5 answers

Instead of WinDbg, you can use the debugging API, which is implemented in dbghelp.dll. It is documented on MSDN . This reference documentation is pretty dry, but it should give you an idea of ​​the capabilities of the API. For example, it MiniDumpReadDumpStreamis a gateway for examining dump files.

+5
source

WinDBG GUI API DbgEng. API WinDBG, . WinDBG SDK , \sdk\samples\dumpstk WinDBG.

DbgEng :

http://www.osronline.com/custom.cfm?name=articlePrint.cfm&id=559

, , DbgEng.

+3
+1

Python dbgeng: pykd.codeplex.com

+1