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