diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-12 05:21:42 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-12 05:21:42 +0000 |
commit | fd16305082fe7d1cf1f3a36e619fa09dc993fd4f (patch) | |
tree | 9a6bb4f059f895de19013ce39d84189f71c9bf38 | |
parent | 5f8be012742f0b30f8c176ca33d1e6c87c743386 (diff) | |
download | edk2-platforms-fd16305082fe7d1cf1f3a36e619fa09dc993fd4f.tar.xz |
Do *not* use #elif but use seperate #define to make sure all structure can exist in doxygen document.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7005 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Include/Library/BaseLib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Library/BaseLib.h b/MdePkg/Include/Library/BaseLib.h index cb31c94c09..213fd3a0cc 100644 --- a/MdePkg/Include/Library/BaseLib.h +++ b/MdePkg/Include/Library/BaseLib.h @@ -4959,9 +4959,9 @@ AsmPalCall ( IN UINT64 Arg3,
IN UINT64 Arg4
);
+#endif
-
-#elif defined (MDE_CPU_IA32) || defined (MDE_CPU_X64)
+#if defined (MDE_CPU_IA32) || defined (MDE_CPU_X64)
///
/// IA32 and x64 Specific Functions
/// Byte packed structure for 16-bit Real Mode EFLAGS
|