// ntdddisk.h
typedef struct _CREATE_DISK_MBR {
ULONG Signature;
} CREATE_DISK_MBR, *PCREATE_DISK_MBR;
View the official Windows Driver Kit DDI reference
// winioctl.h
typedef struct _CREATE_DISK_MBR {
DWORD Signature;
} CREATE_DISK_MBR, *PCREATE_DISK_MBR;
View the official Win32 API reference
No description available.
The CREATE_DISK_MBR structure is used with the IOCTL IOCTL_DISK_CREATE_DISK to initialize a disk with an empty MBR partition table.
Signature
Specifies the disk signature value, which uniquely identifies the disk.
Contains information that the IOCTL_DISK_CREATE_DISK control code uses to initialize master boot record (MBR) disks.
Signature
The disk signature of the MBR disk to be initialized.
The CREATE_DISK_MBR structure is part of the CREATE_DISK structure.