Platform SDK: Debugging and Error Handling

IMAGE_FUNCTION_ENTRY

The IMAGE_FUNCTION_ENTRY structure represents an entry in the function table.

typedef struct _IMAGE_FUNCTION_ENTRY {
    DWORD StartingAddress;
    DWORD EndingAddress;
    DWORD EndOfPrologue;
} IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;

Members

StartingAddress
Image address of the start of the function.
EndingAddress
Image address of the end of the function.
EndOfPrologue
Image address of the end of the prologue code.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 or later.
  Windows 95/98: Requires Windows 95 or later. Available as a redistributable for Windows 95.
  Header: Declared in Winnt.h; include Windows.h.

See Also

Image Help Library Overview, ImageHlp Structures, STACKFRAME