]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Application/UiApp/Language.h
Remove the useless code to fix build failure caused by error depend on IntelFramework...
[mirror_edk2.git] / MdeModulePkg / Application / UiApp / Language.h
CommitLineData
143f0b1d
ED
1/** @file\r
2 Language setting\r
3\r
4Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>\r
5This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _LANGUAGE_H_\r
16#define _LANGUAGE_H_\r
17\r
18#include "String.h"\r
19\r
20/**\r
21 Get next language from language code list (with separator ';').\r
22\r
23 If LangCode is NULL, then ASSERT.\r
24 If Lang is NULL, then ASSERT.\r
25\r
26 @param LangCode On input: point to first language in the list. On\r
27 output: point to next language in the list, or\r
28 NULL if no more language in the list.\r
29 @param Lang The first language in the list.\r
30\r
31**/\r
32VOID\r
33EFIAPI\r
34GetNextLanguage (\r
35 IN OUT CHAR8 **LangCode,\r
36 OUT CHAR8 *Lang\r
37 );\r
38\r
39/**\r
40 Routine to export glyphs to the HII database. This is in addition to whatever is defined in the Graphics Console driver.\r
41\r
42**/\r
43EFI_HII_HANDLE\r
44ExportFonts (\r
45 VOID\r
46 );\r
47\r
48#endif // _LANGUAGE_H_\r