STOR_FILTER_RESOURCE_REQUIREMENTS structure (storport.h)

STOR_FILTER_RESOURCE_REQUIREMENTS is the structure pointed to by the Parameters parameter when a miniport's HwStorAdapterControl routine is called with a ControlType of ScsiAdapterFilterResourceRequirements.

Syntax

typedef struct _STOR_FILTER_RESOURCE_REQUIREMENTS {
  ULONG                          Version;
  ULONG                          Size;
  PIO_RESOURCE_REQUIREMENTS_LIST IoResourceRequirementsList;
} STOR_FILTER_RESOURCE_REQUIREMENTS, *PSTOR_FILTER_RESOURCE_REQUIREMENTS;

Members

Version

The version of the filter. This is currently set to STOR_FILTER_RESOURCE_REQUIREMENTS_V1.

Size

The size of this structure, in bytes. Set to sizeof(STOR_FILTER_RESOURCE_REQUIREMENTS).

IoResourceRequirementsList

Pointer to an IO_RESOURCE_REQUIREMENTS_LIST structure that describes the set of resource configurations that can be used by a device.

Requirements

Requirement Value
Minimum supported client Windows 8.1
Header storport.h

See also

HwStorAdapterControl