// ntddvol.h
typedef struct _VOLUME_READ_PLEX_INPUT {
LARGE_INTEGER ByteOffset;
ULONG Length;
ULONG PlexNumber;
} VOLUME_READ_PLEX_INPUT, *PVOLUME_READ_PLEX_INPUT;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used in conjunction with IOCTL_VOLUME_READ_PLEX to read data from a specific plex in a volume.
ByteOffsetSupplies the start offset, in bytes, relative to the beginning of the volume. This member must be aligned on a 512-byte boundary.
LengthSupplies the length, in bytes, of the block to be read. This member must be an integer multiple of 512 bytes.
PlexNumberSupplies the zero-based plex number.