2011-05-11 18:31:20 +00:00
|
|
|
/*++ @file
|
|
|
|
|
|
2011-06-28 16:50:26 +00:00
|
|
|
Copyright (c) 2011, Apple Inc. All rights reserved.
|
2019-04-03 16:03:44 -07:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-05-11 18:31:20 +00:00
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
#include <Uefi.h>
|
|
|
|
|
#include <Protocol/SimpleTextInEx.h>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
KeyMapMake gets called on key presses.
|
|
|
|
|
|
|
|
|
|
@param KeyData Key that was pressed.
|
|
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
EFI_STATUS
|
|
|
|
|
EFIAPI
|
|
|
|
|
KeyMapMake (
|
|
|
|
|
IN EFI_KEY_DATA *KeyData
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
KeyMapBreak gets called on key releases.
|
|
|
|
|
|
|
|
|
|
@param KeyData Key that was pressed.
|
|
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
EFI_STATUS
|
|
|
|
|
EFIAPI
|
|
|
|
|
KeyMapBreak (
|
|
|
|
|
IN EFI_KEY_DATA *KeyData
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
return EFI_SUCCESS;
|
2018-08-29 11:39:06 +08:00
|
|
|
}
|