// ntddcdvd.h
typedef struct _STORAGE_SET_READ_AHEAD {
LARGE_INTEGER TriggerAddress;
LARGE_INTEGER TargetAddress;
} STORAGE_SET_READ_AHEAD, *PSTORAGE_SET_READ_AHEAD;
View the official Windows Driver Kit DDI referenceNo description available.
The STORAGE_SET_READ_AHEAD structure is used in conjunction with the IOCTL_STORAGE_SET_READ_AHEAD request to instruct the device to skip to the target address upon reaching the trigger address.
TriggerAddressIndicates the address at which the device jumps to the target address.
TargetAddressIndicates the address to jump to.