// 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 reference
No description available.
The STOR_DEVICE_POWER_STATE enumerator specifies a device power state.
StorPowerDeviceUnspecified
Device power state unspecified.
StorPowerDeviceD0
The D0 device power state.
StorPowerDeviceD1
The D1 device power state.
StorPowerDeviceD2
The D2 device power state.
StorPowerDeviceD3
The D3 device power state.
StorPowerDeviceMaximum
The upper delimiting value on device power states.
The STOR_DEVICE_POWER_STATE enumerator specifies a device power state.
StorPowerDeviceUnspecified
Device power state unspecified.
StorPowerDeviceD0
The D0 device power state.
StorPowerDeviceD1
The D1 device power state.
StorPowerDeviceD2
The D2 device power state.
StorPowerDeviceD3
The D3 device power state.
StorPowerDeviceMaximum
The upper delimiting value on device power states.
The STOR_DEVICE_POWER_STATE enumerator specifies a storage device power state.
StorPowerDeviceUnspecified
The device power state is unspecified.
StorPowerDeviceD0
Maximum device power state, which corresponds to device working state D0.
StorPowerDeviceD1
The device sleeping state that is less than StorPowerDeviceD0 and greater than StorPowerDeviceD2, which corresponds to device power state D1.
StorPowerDeviceD2
The device sleeping state that is less than StorPowerDeviceD1 and greater than StorPowerDeviceD3, which corresponds to device power state D2.
StorPowerDeviceD3
The lowest-powered device sleeping state, which corresponds to device power state D3.
StorPowerDeviceMaximum
The upper delimiting value on device power states.