// storport.h
typedef struct _STOR_POWER_SETTING_INFO {
GUID PowerSettingGuid;
PVOID Value;
ULONG ValueLength;
} STOR_POWER_SETTING_INFO, *PSTOR_POWER_SETTING_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
STOR_POWER_SETTING_INFO is the structure pointed to by the Parameters parameter when a miniport's HwStorAdapterControl routine is called with a ControlType of ScsiPowerSettingNotification.
PowerSettingGuidThe GUID of the power setting that changed.
ValueData representing the new value for the power setting.
ValueLengthLength in bytes of the data pointed to by Value.