diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-14 02:56:09 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-14 02:56:09 +0000 |
commit | 3566565aa46899c26d5d8243966643f9a89a2133 (patch) | |
tree | e5cebc082d4efa2b18086469501fd20d7f16b751 /MdePkg | |
parent | 55d473ba157d12322e5946ec0e4dd5827ad6bdb0 (diff) | |
download | edk2-platforms-3566565aa46899c26d5d8243966643f9a89a2133.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@5644 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Ia32/ProcessorBind.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/MdePkg/Include/Ia32/ProcessorBind.h b/MdePkg/Include/Ia32/ProcessorBind.h index 72c10328e4..c609bb969e 100644 --- a/MdePkg/Include/Ia32/ProcessorBind.h +++ b/MdePkg/Include/Ia32/ProcessorBind.h @@ -15,9 +15,9 @@ #ifndef __PROCESSOR_BIND_H__
#define __PROCESSOR_BIND_H__
-//
-// Define the processor type so other code can make processor based choices
-//
+///
+/// Define the processor type so other code can make processor based choices
+///
#define MDE_CPU_IA32
//
@@ -150,20 +150,20 @@ typedef UINT32 UINTN; typedef INT32 INTN;
-//
-// Processor specific defines
-//
+///
+/// Processor specific defines
+///
#define MAX_BIT 0x80000000
#define MAX_2_BITS 0xC0000000
-//
-// Maximum legal IA-32 address
-//
+///
+/// Maximum legal IA-32 address
+///
#define MAX_ADDRESS 0xFFFFFFFF
-//
-// The stack alignment required for IA-32
-//
+///
+/// The stack alignment required for IA-32
+///
#define CPU_STACK_ALIGNMENT sizeof(UINTN)
//
@@ -172,9 +172,9 @@ typedef INT32 INTN; // EFI intrinsics are required to modify thier member functions with EFIAPI.
//
#if _MSC_EXTENSIONS
- //
- // Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.
- //
+ ///
+ /// Microsoft* compiler requires _EFIAPI useage, __cdecl is Microsoft* specific C.
+ ///
#define EFIAPI __cdecl
#else
#if __GNUC__
|