estrutura CREATE_DISK (winioctl.h)

Contém informações que o código de controle IOCTL_DISK_CREATE_DISK usa para inicializar a GPT (tabela de partição GUID), registro mestre de inicialização (MBR) ou discos brutos.

Sintaxe

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

Membros

PartitionStyle

O formato de uma partição.

Para obter mais informações, consulte PARTITION_STYLE.

DUMMYUNIONNAME

DUMMYUNIONNAME.Mbr

Uma estrutura CREATE_DISK_MBR que contém informações de disco quando um disco MBR deve ser inicializado.

DUMMYUNIONNAME.Gpt

Uma estrutura CREATE_DISK_GPT que contém informações de disco quando um disco GPT deve ser inicializado.

Requisitos

   
Cliente mínimo com suporte Windows XP [somente aplicativos da área de trabalho]
Servidor mínimo com suporte Windows Server 2003 [somente aplicativos da área de trabalho]
Cabeçalho winioctl.h (inclua Windows.h)

Confira também

CREATE_DISK_GPT

CREATE_DISK_MBR

IOCTL_DISK_CREATE_DISK

PARTITION_STYLE