]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/HiiDatabaseDxe/R8Lib.h
Apply GetBestLanguage() for the implementation of HiiStringIdToImage() API.
[mirror_edk2.git] / MdeModulePkg / Universal / HiiDatabaseDxe / R8Lib.h
CommitLineData
fe571766 1/** @file\r
2Implement a utility function named R8_EfiLibCompareLanguage.\r
3\r
4 Copyright (c) 2007 - 2008, Intel Corporation\r
5\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14\r
15**/\r
16\r
17#ifndef __R8_LIB_H__\r
18#define __R8_LIB_H__\r
19\r
fe571766 20/**\r
21 Compare whether two names of languages are identical.\r
22\r
23 @param Language1 Name of language 1\r
24 @param Language2 Name of language 2\r
25\r
26 @retval TRUE same\r
27 @retval FALSE not same\r
28\r
29**/\r
30BOOLEAN\r
31R8_EfiLibCompareLanguage (\r
32 IN CHAR8 *Language1,\r
33 IN CHAR8 *Language2\r
34 )\r
35;\r
36\r
fe571766 37#endif\r
38\r
39\r