MINIDUMP_EXCEPTION_INFORMATION Structure

Debug Help Library

MINIDUMP_EXCEPTION_INFORMATION Structure

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

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

The memory location to which the value of ExceptionPointers refers. If this member is TRUE, the exception pointer is located in the address space of the client, or the process that crashed. If this member is FALSE, the exception pointer is located in the address space of the calling program.

Requirements

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in DbgHelp.h.

See Also

EXCEPTION_POINTERS
MiniDumpWriteDump


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.