Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

EXCEPTION_POINTERS structure

Contains an exception record with a machine-independent description of an exception and a context record with a machine-dependent description of the processor context at the time of the exception.

Syntax


typedef struct _EXCEPTION_POINTERS {
  PEXCEPTION_RECORD ExceptionRecord;
  PCONTEXT          ContextRecord;
} EXCEPTION_POINTERS, *PEXCEPTION_POINTERS;

Members

ExceptionRecord

A pointer to an EXCEPTION_RECORD structure that contains a machine-independent description of the exception.

ContextRecord

A pointer to a CONTEXT structure that contains a processor-specific description of the state of the processor at the time of the exception.

Requirements

Minimum supported client

Windows XP [desktop apps only]

Minimum supported server

Windows Server 2003 [desktop apps only]

Header

WinNT.h (include Windows.h)

See also

GetExceptionInformation
CONTEXT
EXCEPTION_RECORD

 

 

Show:
© 2017 Microsoft