00001 /** @file 00002 Present the dependency expression values in PI. 00003 00004 Copyright (c) 2006 - 2008, Intel Corporation 00005 All rights reserved. This program and the accompanying materials 00006 are licensed and made available under the terms and conditions of the BSD License 00007 which accompanies this distribution. The full text of the license may be found at 00008 http://opensource.org/licenses/bsd-license.php 00009 00010 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 00011 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 00012 00013 @par Revision Reference: 00014 PI Version 1.0 00015 00016 **/ 00017 #ifndef __PI_DEPENDENCY_H__ 00018 #define __PI_DEPENDENCY_H__ 00019 00020 /// 00021 /// If present, this must be the first and only opcode, 00022 /// EFI_DEP_BEFORE is only used by DXE driver. 00023 /// 00024 #define EFI_DEP_BEFORE 0x00 00025 00026 /// 00027 /// If present, this must be the first and only opcode, 00028 /// EFI_DEP_AFTER is only used by DXE driver. 00029 /// 00030 #define EFI_DEP_AFTER 0x01 00031 00032 #define EFI_DEP_PUSH 0x02 00033 #define EFI_DEP_AND 0x03 00034 #define EFI_DEP_OR 0x04 00035 #define EFI_DEP_NOT 0x05 00036 #define EFI_DEP_TRUE 0x06 00037 #define EFI_DEP_FALSE 0x07 00038 #define EFI_DEP_END 0x08 00039 00040 00041 /// 00042 /// If present, this must be the first opcode, 00043 /// EFI_DEP_SOR is only used by DXE driver. 00044 /// 00045 #define EFI_DEP_SOR 0x09 00046 00047 #endif
1.5.7.1