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
This commit is contained in:
klu2 2008-08-14 02:56:09 +00:00
parent 55d473ba15
commit 3566565aa4
1 changed files with 15 additions and 15 deletions

View File

@ -15,9 +15,9 @@
#ifndef __PROCESSOR_BIND_H__ #ifndef __PROCESSOR_BIND_H__
#define __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 #define MDE_CPU_IA32
// //
@ -150,20 +150,20 @@ typedef UINT32 UINTN;
typedef INT32 INTN; typedef INT32 INTN;
// ///
// Processor specific defines /// Processor specific defines
// ///
#define MAX_BIT 0x80000000 #define MAX_BIT 0x80000000
#define MAX_2_BITS 0xC0000000 #define MAX_2_BITS 0xC0000000
// ///
// Maximum legal IA-32 address /// Maximum legal IA-32 address
// ///
#define MAX_ADDRESS 0xFFFFFFFF #define MAX_ADDRESS 0xFFFFFFFF
// ///
// The stack alignment required for IA-32 /// The stack alignment required for IA-32
// ///
#define CPU_STACK_ALIGNMENT sizeof(UINTN) #define CPU_STACK_ALIGNMENT sizeof(UINTN)
// //
@ -172,9 +172,9 @@ typedef INT32 INTN;
// EFI intrinsics are required to modify thier member functions with EFIAPI. // EFI intrinsics are required to modify thier member functions with EFIAPI.
// //
#if _MSC_EXTENSIONS #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 #define EFIAPI __cdecl
#else #else
#if __GNUC__ #if __GNUC__