IMAGE_FUNCTION_ENTRY64-Struktur (winnt.h)
Stellt einen Eintrag in der Funktionstabelle dar.
Syntax
typedef struct _IMAGE_FUNCTION_ENTRY64 {
ULONGLONG StartingAddress;
ULONGLONG EndingAddress;
union {
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
} DUMMYUNIONNAME;
} IMAGE_FUNCTION_ENTRY64, *PIMAGE_FUNCTION_ENTRY64;
Member
StartingAddress
Die Bildadresse des Funktionsstarts.
EndingAddress
Die Bildadresse des Funktionsendes.
DUMMYUNIONNAME
DUMMYUNIONNAME.EndOfPrologue
Die Bildadresse des Endes des Prologcodes.
DUMMYUNIONNAME.UnwindInfoAddress
Hinweise
Die folgende Definition ist für die 64-Bit-Unterstützung vorhanden.
typedef struct _IMAGE_FUNCTION_ENTRY64 {
ULONGLONG StartingAddress;
ULONGLONG EndingAddress;
union {
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
};
} IMAGE_FUNCTION_ENTRY64, *PIMAGE_FUNCTION_ENTRY64;
Anforderungen
Unterstützte Mindestversion (Client) | Windows XP [nur Desktop-Apps] |
Unterstützte Mindestversion (Server) | Windows Server 2003 [nur Desktop-Apps] |
Kopfzeile | winnt.h (Einschließen von Windows.h) |