]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Library/FrameworkHiiLib.h
ceb91cf8b94b2f54b1fb0ab51fa49c9dab18adea
[mirror_edk2.git] / IntelFrameworkPkg / Include / Library / FrameworkHiiLib.h
1 /** @file
2 Public include file for the HII Library
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: HiiLib.h
14
15 **/
16
17 #ifndef __FRAMEWORK_HII_LIB_H__
18 #define __FRAMEWORK_HII_LIB_H__
19
20 #include <FrameworkDxe.h>
21
22 #include <Protocol/FrameworkHii.h>
23 //
24 // FrameworkHiiLib will produce HiiLib library class too.
25 //
26 #include <Library/HiiLib.h>
27
28 /**
29 This function allocates pool for an EFI_HII_PACKAGES structure
30 with enough space for the variable argument list of package pointers.
31 The allocated structure is initialized using NumberOfPackages, Guid,
32 and the variable length argument list of package pointers.
33
34 @param NumberOfPackages The number of HII packages to prepare.
35 @param Guid Package GUID.
36
37 @return
38 The allocated and initialized packages.
39
40 **/
41 EFI_HII_PACKAGES *
42 EFIAPI
43 PreparePackages (
44 IN UINTN NumberOfPackages,
45 IN CONST EFI_GUID *Guid OPTIONAL,
46 ...
47 )
48 ;
49
50 #endif