PROCESS_DYNAMIC_EH_CONTINUATION_TARGET structure (winnt.h)

Contains dynamic exception handling continuation targets. The SetProcessDynamicEHContinuationTargets function uses this structure.

Syntax

typedef struct _PROCESS_DYNAMIC_EH_CONTINUATION_TARGET {
  ULONG_PTR TargetAddress;
  ULONG_PTR Flags;
} PROCESS_DYNAMIC_EH_CONTINUATION_TARGET, *PPROCESS_DYNAMIC_EH_CONTINUATION_TARGET;

Members

TargetAddress

The address of a dynamic exception handling continuation target.

Flags

Flags that apply to the dynamic exception handling continuation target in TargetAddress.

Value Meaning
DYNAMIC_EH_CONTINUATION_TARGET_ADD
0x00000001UL
Dynamic exception handling continuation target should be added. If this flag is not set, the target is removed. This is an input flag.
DYNAMIC_EH_CONTINUATION_TARGET_PROCESSED
0x00000002UL
Dynamic exception handling continuation target has been successfully processed (either added or removed). This is an output flag used to report which targets were successfully processed when processing an array of multiple targets.

Requirements

Requirement Value
Minimum supported client Windows 10 Build 20348
Minimum supported server Windows 10 Build 20348
Header winnt.h