Contains the exception information written to the minidump file by the MiniDumpWriteDump function.
typedef struct _MINIDUMP_EXCEPTION_INFORMATION64 {
DWORD ThreadId;
ULONG64 ExceptionRecord;
ULONG64 ContextRecord;
BOOL ClientPointers;
} MINIDUMP_EXCEPTION_INFORMATION64, *PMINIDUMP_EXCEPTION_INFORMATION64;
ThreadId
The identifier of the thread throwing the exception.
ExceptionRecord
A description of the exception at the time of the exception.
ContextRecord
The processor context at the time of the exception.
ClientPointers
Determines where to get the memory regions pointed to by the ExceptionRecord member. Set to TRUE if the memory resides in the process being debugged (the target process of the debugger). Otherwise, set to FALSE if the memory resides in the address space of the calling program (the debugger process). If you are accessing local memory (in the calling process) you should not set this member to TRUE.
Header: Declared in dbghelp.h.