<div class="content" name="VDS_PARTITION_INFO_GPT" uuid="559ba138-03c0-4d1d-8650-e531a78ea17c"><p>The VDS_PARTITION_INFO_GPT structure provides information
about a <a href="8eef5d42-22d7-4302-aed9-12face91505a#gt_2f24f458-7d39-47a2-93f7-de433ea85c75" data-linktype="relative-path">partition</a> in a <a href="8eef5d42-22d7-4302-aed9-12face91505a#gt_2fc866b7-7f83-479a-ad4e-fdffcbcff989" data-linktype="relative-path">GPT</a>.</p><dl>
<dd>
<div><pre> typedef struct _VDS_PARTITION_INFO_GPT {
   GUID partitionType;
   GUID partitionId;
   ULONGLONG attributes;
   WCHAR name[36];
 } VDS_PARTITION_INFO_GPT;
</pre></div>
</dd></dl><p><b>partitionType:</b>  A <a href="8eef5d42-22d7-4302-aed9-12face91505a#gt_f49694cc-c350-462d-ab8e-816f0103c6c1" data-linktype="relative-path">GUID</a> indicating the <a href="8eef5d42-22d7-4302-aed9-12face91505a#gt_674598d2-080c-4dbf-b12e-cc873da21b54" data-linktype="relative-path">partition type</a>.<a id="Appendix_A_Target_21"></a><a aria-label="Product behavior note 21" href="6b2552ee-ba27-409f-99a8-18841573327a#Appendix_A_21" data-linktype="relative-path">&lt;21&gt;</a></p><p><b>partitionId:</b>  The GUID of the
partition.</p><p><b>attributes:</b>  The attributes of the
partition; they can have a combination of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>GPT_ATTRIBUTE_PLATFORM_REQUIRED 0x0000000000000001</td>
  <td>Partition is required for the platform to function properly.&lt;22&gt;</td>
 </tr><tr>
  <td>GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY 0x1000000000000000</td>
  <td>Partition cannot be written to but can be read from. Used only with the basic data partition type.</td>
 </tr><tr>
  <td>GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY 0x2000000000000000</td>
  <td>Partition is a shadow copy. Used only with the basic data partition type.</td>
 </tr><tr>
  <td>GPT_BASIC_DATA_ATTRIBUTE_HIDDEN 0x4000000000000000</td>
  <td>Partition is hidden and will not be mounted. Used only with the basic data partition type.</td>
 </tr><tr>
  <td>GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER 0x8000000000000000</td>
  <td>Partition does not receive a drive letter by default when moving the disk to another machine. Used only with the basic data partition type.</td>
 </tr></tbody></table>
</dd></dl><p><b>name:</b>  Null-terminated Unicode name
of the partition.</p></div>