PARTITION_INFORMATION_GPT structure (ntdddisk.h)

PARTITION_INFORMATION_GPT contains information for a GUID Partition Table partition that is not held in common with a Master Boot Record partition.

Syntax

typedef struct _PARTITION_INFORMATION_GPT {
  GUID    PartitionType;
  GUID    PartitionId;
  ULONG64 Attributes;
  WCHAR   Name[36];
} PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT;

Members

PartitionType

Specifies a GUID that uniquely identifies the partition type. The GUID data type is described on the Using GUIDs in Drivers reference page.

PartitionId

Specifies a GUID that uniquely identifies the partition. The GUID data type is described on the Using GUIDs in Drivers reference page.

Attributes

Specifies the partition entry attributes used for diagnostics, recovery tools, and other firmware essential to the operation of the device. See Intel's Extensible Firmware Interface specification for further information.

Name[36]

Specifies the partition name in Unicode.

Requirements

Requirement Value
Header ntdddisk.h (include Ntdddisk.h)

See also

IoReadPartitionTableEx

PARTITION_INFORMATION_EX