// dispmprt.h
typedef enum _DXGK_EVENT_TYPE {
DxgkUndefinedEvent,
DxgkAcpiEvent,
DxgkPowerStateEvent,
DxgkDockingEvent,
DxgkChainedAcpiEvent
} DXGK_EVENT_TYPE, *PDXGK_EVENT_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_EVENT_TYPE enumeration indicates the event type in a call to the display miniport driver's DxgkDdiNotifyAcpiEvent function.
DxgkUndefinedEventIndicates that a variable of type DXGK_EVENT_TYPE has not yet been assigned a meaningful value.
DxgkAcpiEventIndicates that the event is an ACPI event.
DxgkPowerStateEventIndicates that the event is a power state event.
DxgkDockingEventIndicates that the event is a docking event.
DxgkChainedAcpiEventIndicates that the ACPI event was sent to the integrated adapter but has been redirected to the driver for the discrete adapter.
Supported by WDDM 2.1 and later drivers.