表示 64 位 Windows 上的函数表中的条目。
语法
typedef struct _IMAGE_RUNTIME_FUNCTION_ENTRY {
  DWORD BeginAddress;
  DWORD EndAddress;
  union {
    DWORD UnwindInfoAddress;
    DWORD UnwindData;
  } DUMMYUNIONNAME;
} RUNTIME_FUNCTION, *PRUNTIME_FUNCTION, _IMAGE_RUNTIME_FUNCTION_ENTRY, *_PIMAGE_RUNTIME_FUNCTION_ENTRY;
成员
BeginAddress
函数开头的地址。
EndAddress
函数末尾的地址。
DUMMYUNIONNAME
DUMMYUNIONNAME.UnwindInfoAddress
函数的展开信息的地址。
DUMMYUNIONNAME.UnwindData
要求
| 要求 | 值 | 
|---|---|
| Header | winnt.h (包括 Windows.h) | 
| 可再发行组件 | DbgHelp.dll 5.1 或更高版本 |