RUNTIME_FUNCTION structure (winnt.h)
Represents an entry in the function table on 64-bit Windows.
Syntax
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;
Members
BeginAddress
The address of the start of the function.
EndAddress
The address of the end of the function.
DUMMYUNIONNAME
DUMMYUNIONNAME.UnwindInfoAddress
The address of the unwind information for the function.
DUMMYUNIONNAME.UnwindData
Requirements
Requirement | Value |
---|---|
Header | winnt.h (include Windows.h) |
Redistributable | DbgHelp.dll 5.1 or later |