summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Common
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2006-12-14 10:14:24 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2006-12-14 10:14:24 +0000
commit3ec2611d34aec117fec295ab55dbf62363a7a7a9 (patch)
treef61e2319cb864203d8d59dc06a502b1e7f54e070 /MdePkg/Include/Common
parentd43eee260fdd3080c85a7d6860c19100d7e48e6b (diff)
downloadedk2-platforms-3ec2611d34aec117fec295ab55dbf62363a7a7a9.tar.xz
Merge R8->R9 tracker 5935 and 7080 to update runtime arch protocol to DxeCis 0.91. Update DxeCore and Runtime driver to follow new definitions.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2101 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Common')
-rw-r--r--MdePkg/Include/Common/BaseTypes.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/MdePkg/Include/Common/BaseTypes.h b/MdePkg/Include/Common/BaseTypes.h
index 92e9c141f7..3af38facbe 100644
--- a/MdePkg/Include/Common/BaseTypes.h
+++ b/MdePkg/Include/Common/BaseTypes.h
@@ -203,4 +203,14 @@ typedef INTN RETURN_STATUS;
typedef UINT64 PHYSICAL_ADDRESS;
+//
+// LIST_ENTRY definition
+//
+typedef struct _LIST_ENTRY LIST_ENTRY;
+
+struct _LIST_ENTRY {
+ LIST_ENTRY *ForwardLink;
+ LIST_ENTRY *BackLink;
+};
+
#endif