]> git.proxmox.com Git - mirror_edk2.git/blame - EmulatorPkg/Library/KeyMapLibNull/KeyMapLibNull.c
EmulatorPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmulatorPkg / Library / KeyMapLibNull / KeyMapLibNull.c
CommitLineData
949f388f 1/*++ @file\r
2\r
d18d8a1d 3Copyright (c) 2011, Apple Inc. All rights reserved.\r
e3ba31da 4SPDX-License-Identifier: BSD-2-Clause-Patent\r
949f388f 5\r
6**/\r
7\r
8#include <Uefi.h>\r
9#include <Protocol/SimpleTextInEx.h>\r
10\r
11\r
12/**\r
13 KeyMapMake gets called on key presses.\r
14\r
15 @param KeyData Key that was pressed.\r
16\r
17 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
18\r
19**/\r
20EFI_STATUS\r
21EFIAPI\r
22KeyMapMake (\r
23 IN EFI_KEY_DATA *KeyData\r
24 )\r
25{\r
26 return EFI_SUCCESS;\r
27}\r
28\r
29/**\r
30 KeyMapBreak gets called on key releases.\r
31\r
32 @param KeyData Key that was pressed.\r
33\r
34 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
35\r
36**/\r
37EFI_STATUS\r
38EFIAPI\r
39KeyMapBreak (\r
40 IN EFI_KEY_DATA *KeyData\r
41 )\r
42{\r
43 return EFI_SUCCESS;\r
79e4f2a5 44}\r