// ntddvol.h
typedef struct _VOLUME_PHYSICAL_OFFSET {
ULONG DiskNumber;
LONGLONG Offset;
} VOLUME_PHYSICAL_OFFSET, *PVOLUME_PHYSICAL_OFFSET;
View the official Windows Driver Kit DDI referenceNo description available.
The VOLUME_PHYSICAL_OFFSET structure contains a physical offset into a volume and its accompanying physical disk number and is used with IOCTL_VOLUME_PHYSICAL_TO_LOGICAL and IOCTL_VOLUME_LOGICAL_TO_PHYSICAL to request a logical offset equivalent of a physical offset or a physical offset equivalent of a logical offset, respectively.
DiskNumberContains the number of the physical disk.
OffsetContains the physical offset in bytes of the data on the disk.
IOCTL_VOLUME_LOGICAL_TO_PHYSICAL
IOCTL_VOLUME_PHYSICAL_TO_LOGICAL