MINIDUMP_EXCEPTION_INFORMATION structure (minidumpapiset.h)

Contains the exception information written to the minidump file by the MiniDumpWriteDump function.

Syntax

typedef struct _MINIDUMP_EXCEPTION_INFORMATION {
  DWORD               ThreadId;
  PEXCEPTION_POINTERS ExceptionPointers;
  BOOL                ClientPointers;
} MINIDUMP_EXCEPTION_INFORMATION, *PMINIDUMP_EXCEPTION_INFORMATION;

Members

ThreadId

The identifier of the thread throwing the exception.

ExceptionPointers

A pointer to an EXCEPTION_POINTERS structure specifying a computer-independent description of the exception and the processor context at the time of the exception.

ClientPointers

Determines where to get the memory regions pointed to by the ExceptionPointers 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.

Requirements

Requirement Value
Header minidumpapiset.h (include DbgHelp.h)
Redistributable DbgHelp.dll 5.1 or later

See also

EXCEPTION_POINTERS

MiniDumpWriteDump