VERIFY_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntdddisk.h

typedef struct _VERIFY_INFORMATION {
  LARGE_INTEGER StartingOffset;
  ULONG         Length;
} VERIFY_INFORMATION, *PVERIFY_INFORMATION;
View the official Windows Driver Kit DDI reference
// winioctl.h

typedef struct _VERIFY_INFORMATION {
  LARGE_INTEGER StartingOffset;
  DWORD         Length;
} VERIFY_INFORMATION, *PVERIFY_INFORMATION;
View the official Win32 API reference

NtDoc

No description available.

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

_VERIFY_INFORMATION structure

Description

The VERIFY_INFORMATION structure provides information used to verify the existence of a disk extent.

Members

StartingOffset

Specifies the starting offset, in bytes, of the disk extent.

Length

Indicates the length, in bytes, of the disk extent.

Remarks

VERIFY_INFORMATION is the output buffer for the IOCTL_DISK_VERIFY control code.

See also

IOCTL_DISK_VERIFY


Win32 API reference (ns-winioctl-verify_information)

VERIFY_INFORMATION structure

Description

Contains information used to verify a disk extent. It is the output buffer for the IOCTL_DISK_VERIFY control code.

Members

StartingOffset

The starting offset of the disk extent.

Length

The length of the disk extent, in bytes.

See also

IOCTL_DISK_VERIFY