CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG structure (ntddk.h)

Contains information about a custom system event trigger. This structure is used by RtlRaiseCustomSystemEventTrigger.

Syntax

typedef struct _CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG {
  ULONG  Size;
  PCWSTR TriggerId;
} CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG, *PCUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG;

Members

Size

The size of the structure in bytes.

TriggerId

A pointer to a Unicode string that contains the GUID used to identify background task to trigger.

Remarks

To initialize this structure, call CUSTOM_SYSTEM_EVENT_TRIGGER_INIT.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1803
Header ntddk.h

See also

RtlRaiseCustomSystemEventTrigger

CUSTOM_SYSTEM_EVENT_TRIGGER_INIT