estructura IMAGE_FUNCTION_ENTRY (winnt.h)
Representa una entrada de la tabla de funciones.
Sintaxis
typedef struct _IMAGE_FUNCTION_ENTRY {
DWORD StartingAddress;
DWORD EndingAddress;
DWORD EndOfPrologue;
} IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
Miembros
StartingAddress
Dirección de imagen del inicio de la función.
EndingAddress
Dirección de la imagen del final de la función.
EndOfPrologue
Dirección de imagen del final del código del prólogo.
Comentarios
La siguiente definición existe para la compatibilidad de 64 bits.
typedef struct _IMAGE_FUNCTION_ENTRY64 {
ULONGLONG StartingAddress;
ULONGLONG EndingAddress;
union {
ULONGLONG EndOfPrologue;
ULONGLONG UnwindInfoAddress;
};
} IMAGE_FUNCTION_ENTRY64, *PIMAGE_FUNCTION_ENTRY64;
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible | Windows XP [solo aplicaciones de escritorio] |
Servidor mínimo compatible | Windows Server 2003 [solo aplicaciones de escritorio] |
Encabezado | winnt.h (incluye Windows.h) |