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