Share via


EXCEPTION_POINTERS (Windows CE 5.0)

Send Feedback

This structure contains the following:

  • An exception record with a machine-independent description of an exception
  • A context record with a machine-dependent description of the processor context at the time of the exception
typedef struct _EXCEPTION_POINTERS { PEXCEPTION_RECORD ExceptionRecord; PCONTEXT ContextRecord; } EXCEPTION_POINTERS; 

Members

  • ExceptionRecord
    Pointer to an EXCEPTION_RECORD structure that contains a machine-independent description of the exception.
  • ContextRecord
    Pointer to a CONTEXT structure that contains a processor-specific description of the state of the processor at the time of the exception.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Excpt.h.

See Also

GetExceptionInformation | CONTEXT | EXCEPTION_RECORD

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.