// ntddcdrm.h
typedef struct __RAW_READ_INFO {
LARGE_INTEGER DiskOffset;
ULONG SectorCount;
TRACK_MODE_TYPE TrackMode;
} RAW_READ_INFO, *PRAW_READ_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The RAW_READ_INFO structure is used in conjunction with the IOCTL_CDROM_RAW_READ request to read data from a CD-ROM in raw mode.
DiskOffsetContains an offset into the CD-ROM disc where data will be read. You can calculate this offset by multiplying the starting sector number for the request times 2048.
SectorCountContains the number of sectors to read.
TrackModeContains an enumerator of type TRACK_MODE_TYPE that indicates the type of the track mode.