]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Uefi/UefiGpt.h
INF module description added
[mirror_edk2.git] / MdePkg / Include / Uefi / UefiGpt.h
index 202397b80ff4cfaa1e66e739d38ddfb77f59e3e2..5ae762db079fe2277ac1742b2d6c661ccff67cec 100644 (file)
@@ -1,7 +1,7 @@
-/* @file\r
+/** @file\r
   EFI Guid Partition Table Format Definition.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation\r
+  Copyright (c) 2006 - 2008, Intel Corporation\r
   All rights reserved. This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
 #ifndef __UEFI_GPT_H__\r
 #define __UEFI_GPT_H__\r
 \r
+///\r
+/// The primary GUID Partition Table Header must be\r
+/// located in LBA 1 (i.e., the second logical block).\r
+///\r
 #define PRIMARY_PART_HEADER_LBA 1\r
 \r
-//\r
-// EFI Partition Table Signature: "EFI PART"\r
-// \r
+///\r
+/// EFI Partition Table Signature: "EFI PART"\r
+/// \r
 #define EFI_PTAB_HEADER_ID      0x5452415020494645ULL\r
 \r
 #pragma pack(1)\r
-//\r
-// GPT Partition Table Header\r
-//\r
+\r
+///\r
+/// GPT Partition Table Header\r
+///\r
 typedef struct {\r
   EFI_TABLE_HEADER  Header;\r
   EFI_LBA           MyLBA;\r
@@ -39,9 +44,9 @@ typedef struct {
   UINT32            PartitionEntryArrayCRC32;\r
 } EFI_PARTITION_TABLE_HEADER;\r
 \r
-//\r
-// GPT Partition Entry\r
-//\r
+///\r
+/// GPT Partition Entry\r
+///\r
 typedef struct {\r
   EFI_GUID  PartitionTypeGUID;\r
   EFI_GUID  UniquePartitionGUID;\r
@@ -51,14 +56,6 @@ typedef struct {
   CHAR16    PartitionName[36];\r
 } EFI_PARTITION_ENTRY;\r
 \r
-//\r
-// GPT Partition Entry Status\r
-//\r
-typedef struct {\r
-  BOOLEAN OutOfRange;\r
-  BOOLEAN Overlap;\r
-} EFI_PARTITION_ENTRY_STATUS;\r
-\r
 #pragma pack()\r
 #endif\r
 \r