// wdfdevice.h
typedef enum _WDF_POWER_POLICY_SX_WAKE_USER_CONTROL {
WakeUserControlInvalid = 0,
WakeDoNotAllowUserControl,
WakeAllowUserControl
} WDF_POWER_POLICY_SX_WAKE_USER_CONTROL;
View the official Windows Driver Kit DDI reference// wudfddi_types.h
typedef enum _WDF_POWER_POLICY_SX_WAKE_USER_CONTROL {
WakeUserControlInvalid,
WakeDoNotAllowUserControl,
WakeAllowUserControl
} WDF_POWER_POLICY_SX_WAKE_USER_CONTROL;
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF and UMDF]
The WDF_POWER_POLICY_SX_WAKE_USER_CONTROL enumeration identifies whether a user can control a device's ability to wake the system from a low system power state.
WakeUserControlInvalid:0For internal use only.
WakeDoNotAllowUserControlUsers cannot control the device's ability to wake the system from a low system power state.
WakeAllowUserControlUsers can control the device's ability to wake the system from a low system power state.
The WDF_POWER_POLICY_SX_WAKE_USER_CONTROL enumeration is used as a member type in the WDF_DEVICE_POWER_POLICY_WAKE_SETTINGS structure.
To control a device's ability to wake the system from a low system power state, users modify information on a property sheet. The framework creates the property sheet and Device Manager displays it.
WDF_DEVICE_POWER_POLICY_WAKE_SETTINGS
[Applies to KMDF and UMDF]
The WDF_POWER_POLICY_SX_WAKE_USER_CONTROL enumeration identifies whether a user can control a device's ability to wake the system from a low system power state.
WakeUserControlInvalidFor internal use only.
WakeDoNotAllowUserControlUsers cannot control the device's ability to wake the system from a low system power state.
WakeAllowUserControlUsers can control the device's ability to wake the system from a low system power state.
The WDF_POWER_POLICY_SX_WAKE_USER_CONTROL enumeration is used as a member type in the WDF_DEVICE_POWER_POLICY_WAKE_SETTINGS structure.
To control a device's ability to wake the system from a low system power state, users modify information on a property sheet. The framework creates the property sheet and Device Manager displays it.
WDF_DEVICE_POWER_POLICY_WAKE_SETTINGS