// hdaudio.h
typedef enum _HDAUDIO_CODEC_POWER_STATE {
PowerCodecUnspecified,
PowerCodecD0,
PowerCodecD1,
PowerCodecD2,
PowerCodecD3,
PowerCodecD3Cold,
PowerCodecMaximum
} HDAUDIO_CODEC_POWER_STATE, *PHDAUDIO_CODEC_POWER_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The HDAUDIO_CODEC_POWER_STATE enumeration defines constants that specify the different power states that HD Audio codecs can support. All states are from DEVICE_POWER_STATE except PowerCodecD3Cold.
PowerCodecUnspecifiedAn unspecified power state.
PowerCodecD0Power state D0
PowerCodecD1Power state D1
PowerCodecD2Power state D2
PowerCodecD3Power state D3
PowerCodecD3ColdPower state D3 Cold
PowerCodecMaximumPower state Maximum
For more information about power states, see DEVICE_POWER_STATE.