STOR_FILTER_RESOURCE_REQUIREMENTS - NtDoc

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

NtDoc

No description available.

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

Description

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.

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.

See also

HwStorAdapterControl