Share via


_IMAGE_RUNTIME_FUNCTION_ENTRY

This structure contains detailed information about runtime exception processing. This structure has an uncompressed 20-byte format.

typedef struct_IMAGE_RUNTIME_FUNCTION_ENTRY {
  ULONG BeginAddress;
  ULONG EndAddress;
  PVOID ExceptionHandler;
  PVOID HandlerData;
  ULONG PrologEndAddress;
} IMAGE_RUNTIME_FUNCTION_ENTRY,
*PIMAGE_RUNTIME_FUNCTIONG_ENTRY;

Members

  • BeginAddress
    Address of the first instruction in the function. It is the function's entry address.
  • EndAddress
    Address of the last instruction in the function. It is the function's end address.
  • ExceptionHandler
    Address of the exception handler for the function.
  • HandlerData
    Address of the exception handler data record for the function.
  • PrologEndAddress
    Address of the last instruction in the prolog.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: no public definition.

See Also

MIPS pdata Format

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.