]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Compatibility/FrameworkHiiToUefiHiiThunk/UefiIfrParserExpressionInternal.h
clean up the un-suitable ';' location when declaring the functions. The regular is...
[mirror_edk2.git] / EdkCompatibilityPkg / Compatibility / FrameworkHiiToUefiHiiThunk / UefiIfrParserExpressionInternal.h
1 /** @file
2 Internal Function and Macro defintions for IFR Expression evaluation used in Ifr Parsing. This header file should only
3 be included by UefiIfrParserExpression.c
4
5 Copyright (c) 2008, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef _HII_THUNK_UEFI_IFR_PARSER_EXPRESSION_INTERNAL_
17 #define _HII_THUNK_UEFI_IFR_PARSER_EXPRESSION_INTERNAL_
18
19 //
20 // Incremental size of stack for expression
21 //
22 #define EXPRESSION_STACK_SIZE_INCREMENT 0x100
23
24
25 FORM_BROWSER_STATEMENT *
26 IdToQuestion (
27 IN FORM_BROWSER_FORMSET *FormSet,
28 IN FORM_BROWSER_FORM *Form,
29 IN UINT16 QuestionId
30 );
31
32
33 FORM_EXPRESSION *
34 IdToExpression (
35 IN FORM_BROWSER_FORM *Form,
36 IN UINT8 RuleId
37 );
38
39
40 #endif