STORAGE_BUS_TYPE
The STORAGE_BUS_TYPE enumerator provides a symbolic means of
representing storage bus types. typedef enum _STORAGE_BUS_TYPE {
BusTypeUnknown = 0x00,
BusTypeScsi,
BusTypeAtapi,
BusTypeAta,
BusType1394,
BusTypeSsa,
BusTypeFibre,
BusTypeUsb,
BusTypeRAID,
BusTypeMaxReserved = 0x7F
} STORAGE_BUS_TYPE, *PSTORAGE_BUS_TYPE;
Enumerators
- BusTypeUnknown
- Indicates an unknown bus type.
- BusTypeScsi
- Indicates a small computer system interface (SCSI) bus.
- BusTypeAtapi
- Indicates an AT Attachment Packet Interface (ATAPI) bus.
- BusTypeAta
- Indicates an advanced technology attachment (ATA) bus.
- BusType1394
- Indicates an IEEE 1394 bus.
- BusTypeSsa
- Indicates a serial storage architecture (SSA) bus.
- BusTypeFibre
- Indicates a fiber channel bus type.
- BusTypeUsb
- Indicates a USB bus type.
- BusTypeRAID
- Indicates a bus for a redundant array of independent disks (RAID).
Headers
Declared in ntddstor.h. Include ntddstor.h.
See Also
DEVICE_MEDIA_INFO,
STORAGE_ADAPTER_DESCRIPTOR,
STORAGE_DEVICE_DESCRIPTOR
|