// irb.h
typedef enum {
UnknownMode,
ChsMode,
LbaMode,
Lba48BitMode
} ATA_ADDRESS_TRANSLATION;
View the official Windows Driver Kit DDI referenceNo description available.
The ATA_ADDRESS_TRANSLATION enumeration type indicates the type of address translation used during data transfers.
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.
UnknownModeChsModeIndicates that sectors are to be addressed using cylinder/head/sector (CHS) values.
LbaModeIndicates that sectors are to be addressed using logical block addressing (LBA) values.
Lba48BitModeIndicates support for 48-bit LBAs.