]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Include/EdkPeimDepex.h
1. Removed the unnecessary #include statements and include files
[mirror_edk2.git] / EdkModulePkg / Include / EdkPeimDepex.h
CommitLineData
878ddf1f 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13 EdkPeimDepex.h\r
14\r
15Abstract:\r
16 This include file is only used in *.DXS files. Do not use this \r
17 include file in normal Peim code.\r
18\r
19 Depex - Dependency Expresion\r
20\r
21 The BNF grammar is thus:\r
22 <depex> ::= <bool> \r
23 <bool> ::= <bool> and <term> \r
24 | <bool> or <term> \r
25 | <term> \r
26 <term> ::= not <factor> \r
27 | <factor> \r
28 <factor> ::= <bool> \r
29 | <boolval> \r
30 | <depinst> \r
31 | <termval> \r
32 <boolval> ::= true \r
33 | false \r
34 <depinst> ::= push GUID \r
35 <termval> ::= end \r
36\r
37--*/\r
38\r
39#ifndef __EDK_PEIM_DEPEX_H__\r
40#define __EDK_PEIM_DEPEX_H__\r
41\r
42#include <EdkPeim.h>\r
43\r
44//\r
45// The Depex grammer needs the following strings so we must undo\r
46// any pre-processor redefinitions\r
47//\r
48#undef DEPENDENCY_START \r
49#undef AND \r
50#undef OR \r
51#undef NOT \r
52#undef TRUE \r
53#undef FALSE \r
54#undef DEPENDENCY_END \r
55\r
56#endif\r