1## @file
2#  Standard C library: Locale implementation.
3#
4#  Copyright (c) 2010-2012, 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#  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##
14
15[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = LibLocale
18  FILE_GUID                      = 9205cde5-5ae5-4a4b-bfbf-f6211967eef9
19  MODULE_TYPE                    = UEFI_APPLICATION
20  VERSION_STRING                 = 1.0
21  LIBRARY_CLASS                  = LibLocale
22
23#
24#  VALID_ARCHITECTURES           = IA32 X64 IPF
25#
26
27[Sources]
28  __mb_cur_max.c            #
29  _def_messages.c           #
30  _def_monetary.c           #
31  _def_numeric.c            #
32  _def_time.c               #
33  aliasname.c               #
34  ctypeio.c                 #
35  localeconv.c              #
36  nl_langinfo.c             #
37  setlocale1.c              #
38  setlocale32.c             #
39  setlocale.c               #
40  wcscoll.c                 #
41  wcsftime.c                #
42  wcstoimax.c               #
43  wcstol.c                  #
44  wcstoll.c                 #
45  wcstoul.c                 #
46  wcstoull.c                #
47  wcstoumax.c               #
48  wcstod.c                  #
49  wcstof.c                  #
50  wcstold.c                 #
51  wcsxfrm.c                 #
52  multibyte_Utf8.c          #
53
54  # Single-byte locale to avoid bringing in citrus
55  iswctype_sb.c             #
56
57[Packages]
58  StdLib/StdLib.dec
59  StdLibPrivateInternalFiles/DoNotUse.dec
60  MdePkg/MdePkg.dec
61
62[LibraryClasses]
63  LibC
64  LibCType
65