小甲鱼 发表于 2016-7-23 02:35:27

EXCEPTION_POINTERS 结构

注:本文档由 Diu 翻译,小甲鱼校对。

原文链接 -> 传送门

EXCEPTION_POINTERS 结构:

EXCEPTION_POINTERS 结构包含一个具有与机器无关的异常描述的异常记录,和一个具有在异常发生时与机器相关的处理器上下文描述的上下文记录。


结构原型:

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

成员解析:


成员 含义
ExceptionRecord 一个指向 EXCEPTION_RECORD 结构的指针,该结构包含一个与机器无关的异常描述
ContextRecord 一个指向 CONTEXT 结构的指针,该结构包含一个在异常发生时与机器相关的处理器状态的描述


备注:

为了使调试器能够调试一个在不同架构上(32 位与 64 位)运行的目标程序,请使用该结构的显式形式之一。

typedef struct _EXCEPTION_RECORD32 {
    DWORD    ExceptionCode;
    DWORD ExceptionFlags;
    DWORD ExceptionRecord;
    DWORD ExceptionAddress;
    DWORD NumberParameters;
    DWORD ExceptionInformation;
} EXCEPTION_RECORD32, *PEXCEPTION_RECORD32;

typedef struct _EXCEPTION_RECORD64 {
    DWORD    ExceptionCode;
    DWORD ExceptionFlags;
    DWORD64 ExceptionRecord;
    DWORD64 ExceptionAddress;
    DWORD NumberParameters;
    DWORD __unusedAlignment;
    DWORD64 ExceptionInformation;
} EXCEPTION_RECORD64, *PEXCEPTION_RECORD64;

需求:


Minimum supported clientWindows XP [仅桌面应用程序]
Minimum supported server Windows 2003 服务器版 [仅桌面应用程序]
Header WinNT.h (包含于 Windows.h)


【API档案】版权归鱼C工作室(www.fishc.com)所有,转载请注明来源。

页: [1]
查看完整版本: EXCEPTION_POINTERS 结构