]> git.proxmox.com Git - mirror_edk2.git/blob - OldMdePkg/Include/Library/HiiLib.h
Adding top-level Conf directory for next generation of EDK II build infrastructure...
[mirror_edk2.git] / OldMdePkg / Include / Library / HiiLib.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 __HII_LIB_H__
18 #define __HII_LIB_H__
19
20 /**
21 This function allocates pool for an EFI_HII_PACKAGES structure
22 with enough space for the variable argument list of package pointers.
23 The allocated structure is initialized using NumberOfPackages, Guid,
24 and the variable length argument list of package pointers.
25
26 @param NumberOfPackages The number of HII packages to prepare.
27 @param Guid Package GUID.
28
29 @return
30 The allocated and initialized packages.
31
32 **/
33 EFI_HII_PACKAGES *
34 EFIAPI
35 PreparePackages (
36 IN UINTN NumberOfPackages,
37 IN CONST EFI_GUID *Guid OPTIONAL,
38 ...
39 )
40 ;
41
42
43
44 #endif