diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-14 03:21:03 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-14 03:21:03 +0000 |
commit | 1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a (patch) | |
tree | 844992a2b181658fafa5ce999c6aaa1d9814857b /MdePkg/Include/IndustryStandard/PeImage.h | |
parent | 3566565aa46899c26d5d8243966643f9a89a2133 (diff) | |
download | edk2-platforms-1bc5d0217a6e9e6086a14cc00c075b9003bd3f0a.tar.xz |
Use doxygen comment style for document entity such as struct, enum, variable that use /// but not //
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5645 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/IndustryStandard/PeImage.h')
-rw-r--r-- | MdePkg/Include/IndustryStandard/PeImage.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/MdePkg/Include/IndustryStandard/PeImage.h b/MdePkg/Include/IndustryStandard/PeImage.h index 07932d5411..aa2a4383d2 100644 --- a/MdePkg/Include/IndustryStandard/PeImage.h +++ b/MdePkg/Include/IndustryStandard/PeImage.h @@ -157,9 +157,9 @@ typedef struct { #define EFI_IMAGE_NT_OPTIONAL_HDR32_MAGIC 0x10b
typedef struct {
- //
- // Standard fields.
- //
+ ///
+ /// Standard fields.
+ ///
UINT16 Magic;
UINT8 MajorLinkerVersion;
UINT8 MinorLinkerVersion;
@@ -169,9 +169,9 @@ typedef struct { UINT32 AddressOfEntryPoint;
UINT32 BaseOfCode;
UINT32 BaseOfData;
- //
- // NT additional fields.
- //
+ ///
+ /// NT additional fields.
+ ///
UINT32 ImageBase;
UINT32 SectionAlignment;
UINT32 FileAlignment;
@@ -309,11 +309,11 @@ typedef EFI_IMAGE_NT_HEADERS64 EFI_IMAGE_NT_HEADERS; #elif defined (MDE_CPU_EBC)
-//
-// This is just to make sure you can cross compile with the EBC compiiler.
-// It does not make sense to have a PE loader coded in EBC. You need to
-// understand the basic
-//
+///
+/// This is just to make sure you can cross compile with the EBC compiiler.
+/// It does not make sense to have a PE loader coded in EBC. You need to
+/// understand the basic
+///
#define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_EBC)
#define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE)
@@ -723,9 +723,9 @@ typedef struct { #define EFI_TE_IMAGE_DIRECTORY_ENTRY_DEBUG 1
-//
-// Union of PE32, PE32+, and TE headers
-//
+///
+/// Union of PE32, PE32+, and TE headers
+///
typedef union {
EFI_IMAGE_NT_HEADERS32 Pe32;
EFI_IMAGE_NT_HEADERS64 Pe32Plus;
|