summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Uefi/UefiGpt.h
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-06-24 07:14:18 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-06-24 07:14:18 +0000
commit8b13229b469f05ec22d76098b052bd6e943fecee (patch)
treecc8b00da0509e1ffd8fb794651f2290385b899c9 /MdePkg/Include/Uefi/UefiGpt.h
parentdc53faa3a2059c75483fe7e5756d2da11fad598c (diff)
downloadedk2-platforms-8b13229b469f05ec22d76098b052bd6e943fecee.tar.xz
Fix doxygen issue:
1) comment for structure should be in doxygen format, such as /// , /**, /*! 2) comment for data field of structure should in doxygen format. 3) should not exist blank between ") (" when declaring a type of function point. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5364 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Uefi/UefiGpt.h')
-rw-r--r--MdePkg/Include/Uefi/UefiGpt.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/MdePkg/Include/Uefi/UefiGpt.h b/MdePkg/Include/Uefi/UefiGpt.h
index c79d80823a..f97030cf22 100644
--- a/MdePkg/Include/Uefi/UefiGpt.h
+++ b/MdePkg/Include/Uefi/UefiGpt.h
@@ -17,15 +17,16 @@
#define PRIMARY_PART_HEADER_LBA 1
-//
-// EFI Partition Table Signature: "EFI PART"
-//
+///
+/// EFI Partition Table Signature: "EFI PART"
+///
#define EFI_PTAB_HEADER_ID 0x5452415020494645ULL
#pragma pack(1)
-//
-// GPT Partition Table Header
-//
+
+///
+/// GPT Partition Table Header
+///
typedef struct {
EFI_TABLE_HEADER Header;
EFI_LBA MyLBA;
@@ -39,9 +40,9 @@ typedef struct {
UINT32 PartitionEntryArrayCRC32;
} EFI_PARTITION_TABLE_HEADER;
-//
-// GPT Partition Entry
-//
+///
+/// GPT Partition Entry
+///
typedef struct {
EFI_GUID PartitionTypeGUID;
EFI_GUID UniquePartitionGUID;
@@ -51,9 +52,9 @@ typedef struct {
CHAR16 PartitionName[36];
} EFI_PARTITION_ENTRY;
-//
-// GPT Partition Entry Status
-//
+///
+/// GPT Partition Entry Status
+///
typedef struct {
BOOLEAN OutOfRange;
BOOLEAN Overlap;