]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OldMdePkg/Include/Common/Dependency.h
Moved the MdePkg to OldMdePkg so that new code in MdePkg does not break existing...
[mirror_edk2.git] / OldMdePkg / Include / Common / Dependency.h
diff --git a/OldMdePkg/Include/Common/Dependency.h b/OldMdePkg/Include/Common/Dependency.h
new file mode 100644 (file)
index 0000000..b38dcd5
--- /dev/null
@@ -0,0 +1,40 @@
+/** @file\r
+  This module contains data specific to dependency expressions.\r
+\r
+  Copyright (c) 2006, Intel Corporation                                                         \r
+  All rights reserved. This program and the accompanying materials                          \r
+  are licensed and made available under the terms and conditions of the BSD License         \r
+  which accompanies this distribution.  The full text of the license may be found at        \r
+  http://opensource.org/licenses/bsd-license.php                                            \r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+\r
+  Module Name:  Dependency.h\r
+\r
+  @par Revision Reference:\r
+  These definitions are from DxeCis 0.91 spec.\r
+\r
+**/\r
+\r
+#ifndef __DEPENDENCY_H__\r
+#define __DEPENDENCY_H__\r
+\r
+/// EFI_DEP_BEFORE       - If present, this must be the first and only opcode\r
+#define EFI_DEP_BEFORE        0x00\r
+\r
+/// EFI_DEP_AFTER        - If present, this must be the first and only opcode\r
+#define EFI_DEP_AFTER         0x01\r
+\r
+#define EFI_DEP_PUSH          0x02\r
+#define EFI_DEP_AND           0x03\r
+#define EFI_DEP_OR            0x04\r
+#define EFI_DEP_NOT           0x05\r
+#define EFI_DEP_TRUE          0x06\r
+#define EFI_DEP_FALSE         0x07\r
+#define EFI_DEP_END           0x08\r
+\r
+/// EFI_DEP_SOR          - If present, this must be the first opcode\r
+#define EFI_DEP_SOR           0x09\r
+\r
+#endif\r