// storport.h
typedef struct _STOR_POFX_ACTIVE_CONTEXT {
STOR_POWER_CONTROL_HEADER Header;
ULONG ComponentIndex;
BOOLEAN Active;
} STOR_POFX_ACTIVE_CONTEXT, *PSTOR_POFX_ACTIVE_CONTEXT;
View the official Windows Driver Kit DDI referenceNo description available.
STOR_POFX_ACTIVE_CONTEXT is the structure pointed to by the Parameters parameter when a miniport's HwStorUnitControl routine is called with a ControlType of ScsiUnitPoFxPowerActive or a miniport's HwStorAdapterControl routine is called with a ControlType of ScsiAdapterPoFxPowerActive.
HeaderThe STOR_POWER_CONTROL_HEADER structure.
ComponentIndexIndex of the device component with the active status. The component index is always 0 for a unit device and for an adapter.
ActiveThe active status of the component. For a unit device, Active is set to TRUE if the unit is active or FALSE if the unit is idle. For an adapter, Active is always set to TRUE.