]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/Include/Library/KeyMapLib.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / EmulatorPkg / Include / Library / KeyMapLib.h
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 <Protocol/SimpleTextInEx.h>
9
10 /**
11 KeyMapMake gets called on key presses.
12
13 @param KeyData Key that was pressed.
14
15 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
16
17 **/
18 EFI_STATUS
19 EFIAPI
20 KeyMapMake (
21 IN EFI_KEY_DATA *KeyData
22 );
23
24 /**
25 KeyMapBreak gets called on key releases.
26
27 @param KeyData Key that was pressed.
28
29 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
30
31 **/
32 EFI_STATUS
33 EFIAPI
34 KeyMapBreak (
35 IN EFI_KEY_DATA *KeyData
36 );