GET_LENGTH_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntdddisk-_get_length_information)

_GET_LENGTH_INFORMATION structure

Description

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.

Members

Length

Contains the length, in bytes, of a disk, partition, or volume.

See also

IOCTL_DISK_GET_LENGTH_INFO


Win32 API reference (ns-winioctl-get_length_information)

GET_LENGTH_INFORMATION structure

Description

Contains disk, volume, or partition length information used by the IOCTL_DISK_GET_LENGTH_INFO control code.

Members

Length

The length of the disk, volume, or partition, in bytes.

See also

IOCTL_DISK_GET_LENGTH_INFO