// irb.h
typedef enum {
IdePowerUnSpecified,
IdePowerD0,
IdePowerD3
} IDE_POWER_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The IDE_POWER_STATE enumeration type indicates that power state of the device.
Note The ATA port driver and ATA miniport driver models may be altered or unavailable in the future. Instead, we recommend using the Storport driver and Storport miniport driver models.
IdePowerUnSpecifiedIndicates that the power level is unspecified.
IdePowerD0Indicates a device power level of 0.
IdePowerD3Indicates a device power level of 3.
The IDE_POWER_STATE enumeration type is used in conjunction with the AtaPortRequestPowerStateChange routine to request a power state transition for a device.
AtaPortRequestPowerStateChange