// 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 reference
No description available.
The PARTITION_STYLE enumeration type indicates the type of partition table for a disk.
PARTITION_STYLE_MBR
Specifies the traditional, AT-style Master Boot Record, type of partition table.
PARTITION_STYLE_GPT
Specifies the GUID Partition Table type of partition table.
PARTITION_STYLE_RAW
The 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_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.