Share via


estructura IMAGE_FUNCTION_ENTRY64 (winnt.h)

Representa una entrada de la tabla de funciones.

Sintaxis

typedef struct _IMAGE_FUNCTION_ENTRY64 {
  ULONGLONG StartingAddress;
  ULONGLONG EndingAddress;
  union {
    ULONGLONG EndOfPrologue;
    ULONGLONG UnwindInfoAddress;
  } DUMMYUNIONNAME;
} IMAGE_FUNCTION_ENTRY64, *PIMAGE_FUNCTION_ENTRY64;

Miembros

StartingAddress

Dirección de imagen del inicio de la función.

EndingAddress

Dirección de la imagen del final de la función.

DUMMYUNIONNAME

DUMMYUNIONNAME.EndOfPrologue

Dirección de imagen del final del código del prólogo.

DUMMYUNIONNAME.UnwindInfoAddress

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

   
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)

Consulte también

Estructuras de ImageHlp

STACKFRAME64