]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Compatibility/FrameworkHiiToUefiHiiThunk/Keyboard.c
Add in thunk support for HiiGetSecondaryLanguages and HiiGetPrimaryLanguages
[mirror_edk2.git] / EdkCompatibilityPkg / Compatibility / FrameworkHiiToUefiHiiThunk / Keyboard.c
CommitLineData
4259256b 1/**@file\r
2\r
3 This file contains the keyboard processing code to the HII database.\r
4\r
5Copyright (c) 2006 - 2008, Intel Corporation\r
6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16\r
17#include "HiiDatabase.h"\r
18\r
19EFI_STATUS\r
20EFIAPI\r
21HiiGetKeyboardLayout (\r
22 IN EFI_HII_PROTOCOL *This,\r
23 OUT UINT16 *DescriptorCount,\r
24 OUT FRAMEWORK_EFI_KEY_DESCRIPTOR *Descriptor\r
25 )\r
26/*++\r
27\r
28Routine Description:\r
29\r
30Arguments:\r
31\r
32Returns:\r
33\r
34--*/\r
35{\r
ee3428bb 36 ASSERT (FALSE);\r
37 //\r
38 // In previous Framewok HII implementation, GetKeyBoardLayout is defined in HII 0.92 specification,\r
39 // but it is not implemented. We ASSERT and return UNSUPPORTED here. \r
40 //\r
41 return EFI_UNSUPPORTED;\r
4259256b 42}\r