]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Common/Dependency.h
Add in OFFSET_OF macro as defined in MDE Library spec
[mirror_edk2.git] / MdePkg / Include / Common / Dependency.h
CommitLineData
878ddf1f 1/** @file\r
0647c9ad 2 This module contains data specific to dependency expressions.\r
878ddf1f 3\r
4 Copyright (c) 2006, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13 Module Name: Dependency.h\r
14\r
5b664244
LG
15 @par Revision Reference:\r
16 These definitions are from DxeCis 0.91 spec.\r
17\r
878ddf1f 18**/\r
19\r
20#ifndef __DEPENDENCY_H__\r
21#define __DEPENDENCY_H__\r
22\r
23/// EFI_DEP_BEFORE - If present, this must be the first and only opcode\r
24#define EFI_DEP_BEFORE 0x00\r
25\r
26/// EFI_DEP_AFTER - If present, this must be the first and only opcode\r
27#define EFI_DEP_AFTER 0x01\r
28\r
29#define EFI_DEP_PUSH 0x02\r
30#define EFI_DEP_AND 0x03\r
31#define EFI_DEP_OR 0x04\r
32#define EFI_DEP_NOT 0x05\r
33#define EFI_DEP_TRUE 0x06\r
34#define EFI_DEP_FALSE 0x07\r
35#define EFI_DEP_END 0x08\r
36\r
37/// EFI_DEP_SOR - If present, this must be the first opcode\r
38#define EFI_DEP_SOR 0x09\r
39\r
878ddf1f 40#endif\r