|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
EXCEPTION_POINTERS
The 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.
typedef struct _EXCEPTION_POINTERS { // exp
PEXCEPTION_RECORD ExceptionRecord;
PCONTEXT ContextRecord;
} EXCEPTION_POINTERS;
Members
ExceptionRecord
Points to an EXCEPTION_RECORD structure that contains a machine-independent description of the exception.
ContextRecord
Points to a CONTEXT structure that contains a processor-specific description of the state of the
processor at the time of the exception.
See Also
GetExceptionInformation, CONTEXT, EXCEPTION_RECORD
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|