// 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 reference
No description available.
The DRIVE_LAYOUT_INFORMATION_MBR structure reports the drive signature for a Master Boot Record partition.
Signature
Specifies the disk signature value, which uniquely identifies the disk.
CheckSum
This 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.
Signature
The signature of the drive.
CheckSum
IOCTL_DISK_GET_DRIVE_LAYOUT_EX
IOCTL_DISK_SET_DRIVE_LAYOUT_EX