2008-03-19 10:01:03 +01:00
|
|
|
/** @file
|
2008-07-16 11:40:06 +02:00
|
|
|
This module contains data specific to dependency expressions
|
|
|
|
and local function prototypes.
|
2018-06-27 15:08:52 +02:00
|
|
|
|
|
|
|
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:05:13 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-03-19 10:01:03 +01:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
#ifndef _PEI_DEPENDENCY_H_
|
|
|
|
#define _PEI_DEPENDENCY_H_
|
|
|
|
|
|
|
|
|
2009-02-12 18:15:08 +01:00
|
|
|
#define MAX_GRAMMAR_SIZE 64
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// type definitions
|
|
|
|
//
|
|
|
|
typedef UINT8 DEPENDENCY_EXPRESSION_OPERAND;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
BOOLEAN Result;
|
|
|
|
VOID *Operator;
|
|
|
|
} EVAL_STACK_ENTRY;
|
|
|
|
|
|
|
|
#endif
|