// 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 referenceNo description available.
The VERIFY_INFORMATION structure provides information used to verify the existence of a disk extent.
StartingOffsetSpecifies the starting offset, in bytes, of the disk extent.
LengthIndicates the length, in bytes, of the disk extent.
VERIFY_INFORMATION is the output buffer for the IOCTL_DISK_VERIFY control code.
Contains information used to verify a disk extent. It is the output buffer for the IOCTL_DISK_VERIFY control code.
StartingOffsetThe starting offset of the disk extent.
LengthThe length of the disk extent, in bytes.