Freigeben über


CREATE_DISK-Struktur (winioctl.h)

Enthält Informationen, die der IOCTL_DISK_CREATE_DISK-Steuerungscode zum Initialisieren von GPT- (GUID-Partitionstabelle), MBR- (Master Boot Record) oder Rohdatenträgern verwendet.

Syntax

typedef struct _CREATE_DISK {
  PARTITION_STYLE PartitionStyle;
  union {
    CREATE_DISK_MBR Mbr;
    CREATE_DISK_GPT Gpt;
  } DUMMYUNIONNAME;
} CREATE_DISK, *PCREATE_DISK;

Member

PartitionStyle

Das Format einer Partition.

Weitere Informationen finden Sie unter PARTITION_STYLE.

DUMMYUNIONNAME

DUMMYUNIONNAME.Mbr

Eine CREATE_DISK_MBR-Struktur , die Datenträgerinformationen enthält, wenn ein MBR-Datenträger initialisiert werden soll.

DUMMYUNIONNAME.Gpt

Eine CREATE_DISK_GPT Struktur, die Datenträgerinformationen enthält, wenn ein GPT-Datenträger initialisiert werden soll.

Anforderungen

   
Unterstützte Mindestversion (Client) Windows XP [nur Desktop-Apps]
Unterstützte Mindestversion (Server) Windows Server 2003 [nur Desktop-Apps]
Kopfzeile winioctl.h (einschließlich Windows.h)

Weitere Informationen

CREATE_DISK_GPT

CREATE_DISK_MBR

IOCTL_DISK_CREATE_DISK

PARTITION_STYLE