]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/HiiDatabaseDxe/R8Lib.h
remove the unused msa files in MdeModulePkg.
[mirror_edk2.git] / MdeModulePkg / Universal / HiiDatabaseDxe / R8Lib.h
CommitLineData
e90b081a 1/** @file
2Implement a utility function named R8_EfiLibCompareLanguage.
3
36fe40c2 4 Copyright (c) 2007 - 2008, Intel Corporation
93e3992d 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**/
31BOOLEAN
32R8_EfiLibCompareLanguage (
33 IN CHAR8 *Language1,
34 IN CHAR8 *Language2
35 )
36;
37
38
93e3992d 39#endif
40
36fe40c2 41