]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/Dependency/Dependency.h
c025863f7107b5dafcf068eadc96fb43e1648dbb
[mirror_edk2.git] / MdeModulePkg / Core / Pei / Dependency / Dependency.h
1 /** @file
2 This module contains data specific to dependency expressions
3 and local function prototypes.
4
5 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _PEI_DEPENDENCY_H_
11 #define _PEI_DEPENDENCY_H_
12
13 #define MAX_GRAMMAR_SIZE 64
14
15 //
16 // type definitions
17 //
18 typedef UINT8 DEPENDENCY_EXPRESSION_OPERAND;
19
20 typedef struct {
21 BOOLEAN Result;
22 VOID *Operator;
23 } EVAL_STACK_ENTRY;
24
25 #endif