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.
|
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-07-04 09:51:48 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
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
|