1 | ## @file
|
---|
2 | # HII Library implementation using UEFI HII protocols and services.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = UefiHiiLib
|
---|
14 | MODULE_UNI_FILE = UefiHiiLib.uni
|
---|
15 | FILE_GUID = 3143687A-7C80-404e-B5FE-2D88980E1B1C
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | LIBRARY_CLASS = HiiLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
---|
19 |
|
---|
20 | #
|
---|
21 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
22 | #
|
---|
23 |
|
---|
24 | [Sources]
|
---|
25 | HiiLib.c
|
---|
26 | HiiString.c
|
---|
27 | HiiLanguage.c
|
---|
28 | InternalHiiLib.h
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | MemoryAllocationLib
|
---|
36 | BaseMemoryLib
|
---|
37 | BaseLib
|
---|
38 | DebugLib
|
---|
39 | UefiBootServicesTableLib
|
---|
40 | DevicePathLib
|
---|
41 | UefiLib
|
---|
42 | UefiHiiServicesLib
|
---|
43 | PrintLib
|
---|
44 |
|
---|
45 | [Protocols]
|
---|
46 | gEfiFormBrowser2ProtocolGuid ## SOMETIMES_CONSUMES
|
---|
47 | gEfiDevicePathProtocolGuid ## SOMETIMES_CONSUMES
|
---|
48 |
|
---|
49 | [Guids]
|
---|
50 | gEdkiiIfrBitVarstoreGuid ## SOMETIMES_CONSUMES ## GUID
|
---|