// irb.h
typedef enum {
DeviceUnknown,
DeviceIsAta,
DeviceIsAtapi,
DeviceNotExist
} IDE_DEVICE_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
The IDE_DEVICE_TYPE enumeration type indicates the device type.
Note The ATA port driver and ATA miniport driver models may be altered or unavailable in the future. Instead, we recommend using the Storport driver and Storport miniport driver models.
DeviceUnknown
Indicates that the device does not communicate by means of a known protocol.
DeviceIsAta
Indicates an ATA device.
DeviceIsAtapi
Indicates an ATAPI device.
DeviceNotExist
Indicates that the device does not exist.