VDS_PARTITION_INFO_GPT structure (vds.h)

[Beginning with Windows 8 and Windows Server 2012, the Virtual Disk Service COM interface is superseded by the Windows Storage Management API.]

Defines details of a GUID partition table (GPT) partition.

Syntax

typedef struct _VDS_PARTITION_INFO_GPT {
  GUID      partitionType;
  GUID      partitionId;
  ULONGLONG attributes;
  WCHAR     name[36];
} VDS_PARTITION_INFO_GPT;

Members

partitionType

GUID for the partition type.

partitionId

GUID for the partition.

attributes

Attributes of the partition.

name[36]

Name of the partition.

Remarks

This structure is used in the Gpt member of the VDS_PARTITION_PROP structure.

A GPT table is sector-aligned.

For information about partition types and attributes, see CREATE_PARTITION_PARAMETERS.

Requirements

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

See also

IVdsAdvancedDisk

VDS Structures

VDS_DISK_PROP

VDS_DISK_PROP2

VDS_PARTITION_INFO_MBR