estructura CREATE_DISK (winioctl.h)

Contiene información que el código de control IOCTL_DISK_CREATE_DISK usa para inicializar la tabla de particiones GUID (GPT), el registro de arranque maestro (MBR) o los discos sin formato.

Sintaxis

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

Miembros

PartitionStyle

Formato de una partición.

Para obtener más información, consulte PARTITION_STYLE.

DUMMYUNIONNAME

DUMMYUNIONNAME.Mbr

Estructura CREATE_DISK_MBR que contiene información de disco cuando se va a inicializar un disco MBR.

DUMMYUNIONNAME.Gpt

Estructura CREATE_DISK_GPT que contiene información de disco cuando se va a inicializar un disco GPT.

Requisitos

   
Cliente mínimo compatible Windows XP [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2003 [solo aplicaciones de escritorio]
Encabezado winioctl.h (incluye Windows.h)

Consulte también

CREATE_DISK_GPT

CREATE_DISK_MBR

IOCTL_DISK_CREATE_DISK

PARTITION_STYLE