]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/Dependency/Dependency.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[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
14 #define MAX_GRAMMAR_SIZE 64
15
16 //
17 // type definitions
18 //
19 typedef UINT8 DEPENDENCY_EXPRESSION_OPERAND;
20
21 typedef struct {
22 BOOLEAN Result;
23 VOID *Operator;
24 } EVAL_STACK_ENTRY;
25
26 #endif