// storport.h
typedef struct _STOR_FILTER_RESOURCE_REQUIREMENTS {
ULONG Version;
ULONG Size;
PIO_RESOURCE_REQUIREMENTS_LIST IoResourceRequirementsList;
} STOR_FILTER_RESOURCE_REQUIREMENTS, *PSTOR_FILTER_RESOURCE_REQUIREMENTS;
View the official Windows Driver Kit DDI referenceNo description available.
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.
VersionThe version of the filter. This is currently set to STOR_FILTER_RESOURCE_REQUIREMENTS_V1.
SizeThe size of this structure, in bytes. Set to sizeof(STOR_FILTER_RESOURCE_REQUIREMENTS).
IoResourceRequirementsListPointer to an IO_RESOURCE_REQUIREMENTS_LIST structure that describes the set of resource configurations that can be used by a device.