1## @file
2#  English module that provides Unicode Collation supports.
3#
4#  This driver installs Unicode ISO 639-2 Collation and
5#  RFC 4646 Unicode Collation 2 protocols based on feature flags
6#  PcdUnicodeCollationSupport & PcdUnicodeCollation2Support respectively.
7#  It allows code running in the boot services environment to perform lexical
8#  comparison functions on Unicode strings for English languages.
9#
10#  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
11#  This program and the accompanying materials
12#  are licensed and made available under the terms and conditions of the BSD License
13#  which accompanies this distribution.  The full text of the license may be found at
14#  http://opensource.org/licenses/bsd-license.php
15#
16#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18#
19##
20
21[Defines]
22  INF_VERSION                    = 0x00010005
23  BASE_NAME                      = EnglishDxe
24  MODULE_UNI_FILE                = EnglishDxe.uni
25  FILE_GUID                      = CD3BAFB6-50FB-4fe8-8E4E-AB74D2C1A600
26  MODULE_TYPE                    = UEFI_DRIVER
27  VERSION_STRING                 = 1.0
28  ENTRY_POINT                    = InitializeUnicodeCollationEng
29
30#
31# The following information is for reference only and not required by the build tools.
32#
33#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
34#
35
36[Sources]
37  UnicodeCollationEng.c
38  UnicodeCollationEng.h
39
40
41[Packages]
42  MdePkg/MdePkg.dec
43  MdeModulePkg/MdeModulePkg.dec
44
45[LibraryClasses]
46  UefiBootServicesTableLib
47  UefiDriverEntryPoint
48  DebugLib
49  PcdLib
50
51[FeaturePcd]
52  gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport     ## CONSUMES
53  gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support    ## CONSUMES
54
55[Protocols]
56  gEfiUnicodeCollationProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport      ## SOMETIMES_PRODUCES
57  gEfiUnicodeCollation2ProtocolGuid | gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support    ## PRODUCES
58
59[UserExtensions.TianoCore."ExtraFiles"]
60  EnglishDxeExtra.uni
61