STOR_POWER_SETTING_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-storport-stor_power_setting_info)

Description

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.

Members

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.

Remarks

See also

HwStorAdapterControl