CREATE_DISK_MBR - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

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

_CREATE_DISK_MBR structure

Description

The CREATE_DISK_MBR structure is used with the IOCTL IOCTL_DISK_CREATE_DISK to initialize a disk with an empty MBR partition table.

Members

Signature

Specifies the disk signature value, which uniquely identifies the disk.

See also

CREATE_DISK

IOCTL_DISK_CREATE_DISK


Win32 API reference (ns-winioctl-create_disk_mbr)

CREATE_DISK_MBR structure

Description

Contains information that the IOCTL_DISK_CREATE_DISK control code uses to initialize master boot record (MBR) disks.

Members

Signature

The disk signature of the MBR disk to be initialized.

Remarks

The CREATE_DISK_MBR structure is part of the CREATE_DISK structure.

See also

CREATE_DISK

CREATE_DISK_GPT

IOCTL_DISK_CREATE_DISK