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
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user