// ntdddisk.h
typedef struct _GET_LENGTH_INFORMATION {
LARGE_INTEGER Length;
} GET_LENGTH_INFORMATION, *PGET_LENGTH_INFORMATION;
View the official Windows Driver Kit DDI reference
// winioctl.h
typedef struct _GET_LENGTH_INFORMATION {
LARGE_INTEGER Length;
} GET_LENGTH_INFORMATION, *PGET_LENGTH_INFORMATION;
View the official Win32 API reference
No description available.
The GET_LENGTH_INFORMATION structure is used with the IOCTL_DISK_GET_LENGTH_INFO to obtain the length, in bytes, of a disk, partition, or volume.
Length
Contains the length, in bytes, of a disk, partition, or volume.
Contains disk, volume, or partition length information used by the IOCTL_DISK_GET_LENGTH_INFO control code.
Length
The length of the disk, volume, or partition, in bytes.