]> git.proxmox.com Git - mirror_edk2.git/blame - InOsEmuPkg/Library/KeyMapLibNull/KeyMapLibNull.c
Clarify the requirements for the Destination parameter of UnicodeStrToAsciiStr.
[mirror_edk2.git] / InOsEmuPkg / Library / KeyMapLibNull / KeyMapLibNull.c
CommitLineData
949f388f 1/*++ @file\r
2\r
3Copyright (c) 2011, Apple Inc. All rights reserved. \r
4This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12**/\r
13\r
14#include <Uefi.h>\r
15#include <Protocol/SimpleTextInEx.h>\r
16\r
17\r
18/**\r
19 KeyMapMake gets called on key presses.\r
20\r
21 @param KeyData Key that was pressed.\r
22\r
23 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
24\r
25**/\r
26EFI_STATUS\r
27EFIAPI\r
28KeyMapMake (\r
29 IN EFI_KEY_DATA *KeyData\r
30 )\r
31{\r
32 return EFI_SUCCESS;\r
33}\r
34\r
35/**\r
36 KeyMapBreak gets called on key releases.\r
37\r
38 @param KeyData Key that was pressed.\r
39\r
40 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
41\r
42**/\r
43EFI_STATUS\r
44EFIAPI\r
45KeyMapBreak (\r
46 IN EFI_KEY_DATA *KeyData\r
47 )\r
48{\r
49 return EFI_SUCCESS;\r
50}