estructura PARTITION_INFORMATION_EX (winioctl.h)

Contiene información de partición para discos estándar de registro de arranque maestro de estilo AT (MBR) y Extensible Firmware Interface (EFI).

Sintaxis

typedef struct _PARTITION_INFORMATION_EX {
  PARTITION_STYLE PartitionStyle;
  LARGE_INTEGER   StartingOffset;
  LARGE_INTEGER   PartitionLength;
  DWORD           PartitionNumber;
  BOOLEAN         RewritePartition;
  BOOLEAN         IsServicePartition;
  union {
    PARTITION_INFORMATION_MBR Mbr;
    PARTITION_INFORMATION_GPT Gpt;
  } DUMMYUNIONNAME;
} PARTITION_INFORMATION_EX, *PPARTITION_INFORMATION_EX;

Miembros

PartitionStyle

Formato de la partición. Para obtener una lista de valores, consulte PARTITION_STYLE.

StartingOffset

Desplazamiento inicial de la partición.

PartitionLength

Tamaño de la partición, en bytes.

PartitionNumber

Número de la partición (basada en 1).

RewritePartition

Si este miembro es TRUE, se puede volver a escribir la partición. El valor de este parámetro debe establecerse en TRUE.

IsServicePartition

DUMMYUNIONNAME

DUMMYUNIONNAME.Mbr

Estructura PARTITION_INFORMATION_MBR que especifica información de partición específica de los discos de registro de arranque maestro (MBR). El formato de partición MBR es el formato de estilo AT estándar.

DUMMYUNIONNAME.Gpt

Estructura PARTITION_INFORMATION_GPT que especifica información de partición específica de los discos de tabla de particiones GUID (GPT). El formato GPT corresponde al formato de partición EFI.

Comentarios

Si la partición está en un disco con formato de registro de arranque maestro de tipo (MBR), los totales de tamaño de partición están limitados. Para obtener más información, vea la sección Comentarios de IOCTL_DISK_SET_DRIVE_LAYOUT.

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

Reconocimiento del sistema de archivos

IOCTL_DISK_GET_PARTITION_INFO_EX

IOCTL_DISK_SET_PARTITION_INFO_EX

PARTITION_INFORMATION_GPT

PARTITION_INFORMATION_MBR

PARTITION_STYLE