Home | History | Annotate | Download | only in UefiHiiLib
      1 ## @file

      2 #  HII Library implementation using UEFI HII protocols and services.

      3 #

      4 #  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>

      5 #

      6 #  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 
     17 [Defines]
     18   INF_VERSION                    = 0x00010005
     19   BASE_NAME                      = UefiHiiLib
     20   MODULE_UNI_FILE                = UefiHiiLib.uni
     21   FILE_GUID                      = 3143687A-7C80-404e-B5FE-2D88980E1B1C
     22   MODULE_TYPE                    = UEFI_DRIVER
     23   VERSION_STRING                 = 1.0
     24   LIBRARY_CLASS                  = HiiLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
     25 
     26 #

     27 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     28 #

     29 
     30 [Sources]
     31   HiiLib.c
     32   HiiString.c
     33   HiiLanguage.c
     34   InternalHiiLib.h
     35 
     36 [Packages]
     37   MdePkg/MdePkg.dec
     38   MdeModulePkg/MdeModulePkg.dec
     39 
     40 [LibraryClasses]
     41   MemoryAllocationLib
     42   BaseMemoryLib
     43   BaseLib
     44   DebugLib
     45   UefiBootServicesTableLib
     46   DevicePathLib
     47   UefiLib
     48   UefiHiiServicesLib
     49   PrintLib
     50 
     51 [Protocols]
     52   gEfiFormBrowser2ProtocolGuid ## SOMETIMES_CONSUMES

     53   gEfiDevicePathProtocolGuid   ## SOMETIMES_CONSUMES

     54