Share via


PDATA_EH

This structure holds detailed information about an associated exception handler function. This is an internal data structure used in OS exception processing.

struct PDATA_EH {
  unsigned int* pHandler;
  unsigned int* pHandlerData;
};

Members

  • pHandler
    Address of the exception handler for the function.
  • pHandlerData
    Address of the exception handler data record for the function.

Requirements

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

See Also

_IMAGE_CE_RUNTIME_FUNCTION_ENTRY

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.