CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

typedef struct _CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG {
  ULONG  Size;
  PCWSTR TriggerId;
} CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG, *PCUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddk-_custom_system_event_trigger_config)

_CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG structure

Description

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

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.

See also

RtlRaiseCustomSystemEventTrigger

CUSTOM_SYSTEM_EVENT_TRIGGER_INIT