// 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 reference
No 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.
PowerSettingGuid
The GUID of the power setting that changed.
Value
Data representing the new value for the power setting.
ValueLength
Length in bytes of the data pointed to by Value.