// ntpoapi.h
typedef enum _MONITOR_DISPLAY_STATE {
PowerMonitorOff,
PowerMonitorOn,
PowerMonitorDim
} MONITOR_DISPLAY_STATE, *PMONITOR_DISPLAY_STATE;
View the official Windows Driver Kit DDI reference// wdm.h
typedef enum _MONITOR_DISPLAY_STATE {
PowerMonitorOff,
PowerMonitorOn,
PowerMonitorDim
} MONITOR_DISPLAY_STATE, *PMONITOR_DISPLAY_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
Indicates the power state of the monitor being displayed on.
PowerMonitorOffThis indicates that the monitor is off.
PowerMonitorOnThis indicates that the monitor is on.
PowerMonitorDimThis indicates that the monitor is dim.
Indicates the power state of the monitor being displayed on.
PowerMonitorOffThis indicates that the monitor is off.
PowerMonitorOnThis indicates that the monitor is on.
PowerMonitorDimThis indicates that the monitor is dim.