summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Base.h
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2016-11-11 11:30:13 +0800
committerLiming Gao <liming.gao@intel.com>2016-11-18 11:10:05 +0800
commitbd5ef82698e5e5931ae46e763187a472ce76b661 (patch)
tree7508ea95ce334ac06d1b47db6c8065b35560b254 /MdePkg/Include/Base.h
parentc023a57e3b37829a40146d97395f838b9cdfbc10 (diff)
downloadedk2-bd5ef82698e5e5931ae46e763187a472ce76b661.tar.gz
edk2-bd5ef82698e5e5931ae46e763187a472ce76b661.tar.bz2
edk2-bd5ef82698e5e5931ae46e763187a472ce76b661.zip
MdePkg Base.h: Add add comments on __ prefix in enum VERIFY_UINTXX_ENUM_SIZE
Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'MdePkg/Include/Base.h')
-rw-r--r--MdePkg/Include/Base.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/MdePkg/Include/Base.h b/MdePkg/Include/Base.h
index 5e24b5d487..8f5b919faa 100644
--- a/MdePkg/Include/Base.h
+++ b/MdePkg/Include/Base.h
@@ -63,6 +63,13 @@ VERIFY_SIZE_OF (UINT64, 8);
VERIFY_SIZE_OF (CHAR8, 1);
VERIFY_SIZE_OF (CHAR16, 2);
+//
+// The following three enum types are used to verify that the compiler
+// configuration for enum types is compliant with Section 2.3.1 of the
+// UEFI 2.3 Specification. These enum types and enum values are not
+// intended to be used. A prefix of '__' is used avoid conflicts with
+// other types.
+//
typedef enum {
__VerifyUint8EnumValue = 0xff
} __VERIFY_UINT8_ENUM_SIZE;