IMAGE_FUNCTION_ENTRY 構造体 (winnt.h)
関数テーブル内のエントリを表します。
構文
typedef struct _IMAGE_FUNCTION_ENTRY {
DWORD StartingAddress;
DWORD EndingAddress;
DWORD EndOfPrologue;
} IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
メンバー
StartingAddress
関数の開始のイメージ アドレス。
EndingAddress
関数の末尾のイメージ アドレス。
EndOfPrologue
プロローグ コードの末尾の画像アドレス。
注釈
次の定義は、64 ビットサポート用に存在します。
typedef struct _IMAGE_FUNCTION_ENTRY64 {
ULONGLONG StartingAddress;
ULONGLONG EndingAddress;
union {
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
};
} IMAGE_FUNCTION_ENTRY64, *PIMAGE_FUNCTION_ENTRY64;
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント | Windows XP (デスクトップ アプリのみ) |
サポートされている最小のサーバー | Windows Server 2003 (デスクトップ アプリのみ) |
Header | winnt.h (Windows.h を含む) |