]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/HiiDatabaseDxe/R8Lib.h
Clean up HiiDatabase for Doxygen comments requirement.
[mirror_edk2.git] / MdeModulePkg / Universal / HiiDatabaseDxe / R8Lib.h
1 /** @file
2 Implement a utility function named R8_EfiLibCompareLanguage.
3
4 Copyright (c) 2007 - 2008, Intel Corporation
5
6 All rights reserved. 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 #ifndef __R8_LIB_H__
18 #define __R8_LIB_H__
19
20
21 /**
22 Compare whether two names of languages are identical.
23
24 @param Language1 Name of language 1
25 @param Language2 Name of language 2
26
27 @retval TRUE same
28 @retval FALSE not same
29
30 **/
31 BOOLEAN
32 R8_EfiLibCompareLanguage (
33 IN CHAR8 *Language1,
34 IN CHAR8 *Language2
35 )
36 ;
37
38
39 #endif
40
41