PARTITION_STYLE enumeration (winioctl.h)

Represents the format of a partition.

Syntax

typedef enum _PARTITION_STYLE {
  PARTITION_STYLE_MBR,
  PARTITION_STYLE_GPT,
  PARTITION_STYLE_RAW
} PARTITION_STYLE;

Constants

 
PARTITION_STYLE_MBR
Master boot record (MBR) format. This corresponds to standard AT-style MBR partitions.
PARTITION_STYLE_GPT
GUID Partition Table (GPT) format.
PARTITION_STYLE_RAW
Partition not formatted in either of the recognized formats—MBR or GPT.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header winioctl.h

See also