// 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 reference
No 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.
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.