// ntdddisk.h
typedef enum _PARTITION_STYLE {
PARTITION_STYLE_MBR,
PARTITION_STYLE_GPT,
PARTITION_STYLE_RAW
} PARTITION_STYLE;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef enum _PARTITION_STYLE {
PARTITION_STYLE_MBR,
PARTITION_STYLE_GPT,
PARTITION_STYLE_RAW
} PARTITION_STYLE;
View the official Win32 API referenceNo description available.
The PARTITION_STYLE enumeration type indicates the type of partition table for a disk.
PARTITION_STYLE_MBRSpecifies the traditional, AT-style Master Boot Record, type of partition table.
PARTITION_STYLE_GPTSpecifies the GUID Partition Table type of partition table.
PARTITION_STYLE_RAWThe partition is not formatted in either of the recognized formats — MBR or GPT.
The GUID Partition Table format conforms to the Extensible Firmware Interface (EFI) standard developed by Intel. For further information, see Intel's Extensible Firmware Interface specification.
Represents the format of a partition.
PARTITION_STYLE_MBRMaster boot record (MBR) format. This corresponds to standard AT-style MBR partitions.
PARTITION_STYLE_GPTGUID Partition Table (GPT) format.
PARTITION_STYLE_RAWPartition not formatted in either of the recognized formats—MBR or GPT.