// 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 reference
No description available.
The output buffer for the StorageDeviceIoCapabilityProperty as defined in STORAGE_PROPERTY_ID.
Version
The version of this structure. The Size serves as the version.
Size
The size of this structure.
LunMaxIoCount
The logical unit number (LUN) max outstanding I/O count.
AdapterMaxIoCount
The adapter max outstanding I/O count.
The output buffer for the StorageDeviceIoCapabilityProperty as defined in STORAGE_PROPERTY_ID.
Version
The version of this structure. The Size serves as the version.
Size
The size of this structure.
LunMaxIoCount
The logical unit number (LUN) max outstanding I/O count.
AdapterMaxIoCount
The adapter max outstanding I/O count.