// ntdddisk.h
typedef struct _DRIVE_LAYOUT_INFORMATION_MBR {
ULONG Signature;
ULONG CheckSum;
} DRIVE_LAYOUT_INFORMATION_MBR, *PDRIVE_LAYOUT_INFORMATION_MBR;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _DRIVE_LAYOUT_INFORMATION_MBR {
DWORD Signature;
DWORD CheckSum;
} DRIVE_LAYOUT_INFORMATION_MBR, *PDRIVE_LAYOUT_INFORMATION_MBR;
View the official Win32 API referenceNo description available.
The DRIVE_LAYOUT_INFORMATION_MBR structure reports the drive signature for a Master Boot Record partition.
SignatureSpecifies the disk signature value, which uniquely identifies the disk.
CheckSumThis structure contains the drive layout information that is specific to a drive with a Master Boot Record partition. It is contained within the DRIVE_LAYOUT_INFORMATION_EX structure.
Provides information about a drive's master boot record (MBR) partitions.
SignatureThe signature of the drive.
CheckSumIOCTL_DISK_GET_DRIVE_LAYOUT_EX
IOCTL_DISK_SET_DRIVE_LAYOUT_EX