// ntddstor.h
typedef struct _STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR {
ULONG Version;
ULONG Size;
ULONG LunMaxIoCount;
ULONG AdapterMaxIoCount;
} STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR, *PSTORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR {
DWORD Version;
DWORD Size;
DWORD LunMaxIoCount;
DWORD AdapterMaxIoCount;
} STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR, *PSTORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR;
View the official Win32 API referenceNo description available.
The output buffer for the StorageDeviceIoCapabilityProperty as defined in STORAGE_PROPERTY_ID.
VersionThe version of this structure. The Size serves as the version.
SizeThe size of this structure.
LunMaxIoCountThe logical unit number (LUN) max outstanding I/O count.
AdapterMaxIoCountThe adapter max outstanding I/O count.
The output buffer for the StorageDeviceIoCapabilityProperty as defined in STORAGE_PROPERTY_ID.
VersionThe version of this structure. The Size serves as the version.
SizeThe size of this structure.
LunMaxIoCountThe logical unit number (LUN) max outstanding I/O count.
AdapterMaxIoCountThe adapter max outstanding I/O count.