// minitape.h
typedef enum _STOR_DEVICE_POWER_STATE {
StorPowerDeviceUnspecified,
StorPowerDeviceD0,
StorPowerDeviceD1,
StorPowerDeviceD2,
StorPowerDeviceD3,
StorPowerDeviceMaximum
} STOR_DEVICE_POWER_STATE, *PSTOR_DEVICE_POWER_STATE;
View the official Windows Driver Kit DDI reference// srb.h
typedef enum _STOR_DEVICE_POWER_STATE {
StorPowerDeviceUnspecified,
StorPowerDeviceD0,
StorPowerDeviceD1,
StorPowerDeviceD2,
StorPowerDeviceD3,
StorPowerDeviceMaximum
} STOR_DEVICE_POWER_STATE, *PSTOR_DEVICE_POWER_STATE;
View the official Windows Driver Kit DDI reference// storport.h
typedef enum _STOR_DEVICE_POWER_STATE {
StorPowerDeviceUnspecified,
StorPowerDeviceD0,
StorPowerDeviceD1,
StorPowerDeviceD2,
StorPowerDeviceD3,
StorPowerDeviceMaximum
} STOR_DEVICE_POWER_STATE, *PSTOR_DEVICE_POWER_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The STOR_DEVICE_POWER_STATE enumerator specifies a device power state.
StorPowerDeviceUnspecifiedDevice power state unspecified.
StorPowerDeviceD0The D0 device power state.
StorPowerDeviceD1The D1 device power state.
StorPowerDeviceD2The D2 device power state.
StorPowerDeviceD3The D3 device power state.
StorPowerDeviceMaximumThe upper delimiting value on device power states.
The STOR_DEVICE_POWER_STATE enumerator specifies a device power state.
StorPowerDeviceUnspecifiedDevice power state unspecified.
StorPowerDeviceD0The D0 device power state.
StorPowerDeviceD1The D1 device power state.
StorPowerDeviceD2The D2 device power state.
StorPowerDeviceD3The D3 device power state.
StorPowerDeviceMaximumThe upper delimiting value on device power states.
The STOR_DEVICE_POWER_STATE enumerator specifies a storage device power state.
StorPowerDeviceUnspecifiedThe device power state is unspecified.
StorPowerDeviceD0Maximum device power state, which corresponds to device working state D0.
StorPowerDeviceD1The device sleeping state that is less than StorPowerDeviceD0 and greater than StorPowerDeviceD2, which corresponds to device power state D1.
StorPowerDeviceD2The device sleeping state that is less than StorPowerDeviceD1 and greater than StorPowerDeviceD3, which corresponds to device power state D2.
StorPowerDeviceD3The lowest-powered device sleeping state, which corresponds to device power state D3.
StorPowerDeviceMaximumThe upper delimiting value on device power states.