mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
f35acfa5ab
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
/** @file
|
|
Key provider
|
|
|
|
Copyright (c) 2018, vit9696. All rights reserved.<BR>
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#ifndef AIK_SOURCE_H
|
|
#define AIK_SOURCE_H
|
|
|
|
#include <Protocol/AmiKeycode.h>
|
|
#include <Protocol/SimpleTextIn.h>
|
|
#include <Protocol/SimpleTextInEx.h>
|
|
|
|
typedef struct {
|
|
//
|
|
// Preserved handle of gST->ConsoleInHandle
|
|
//
|
|
EFI_HANDLE ConSplitHandler;
|
|
|
|
//
|
|
// Solved input protocol instances from ConSplitHandler
|
|
// We override their ReadKey and Reset handlers and implement
|
|
// them ourselves via polled data from one of these protocols.
|
|
// Polled proto is prioritised as present: AMI, EX, Legacy.
|
|
//
|
|
AMI_EFIKEYCODE_PROTOCOL *AmiKeycode;
|
|
EFI_SIMPLE_TEXT_INPUT_PROTOCOL *TextInput;
|
|
EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *TextInputEx;
|
|
|
|
//
|
|
// Original implementations of the protocols.
|
|
//
|
|
AMI_RESET_EX AmiReset;
|
|
AMI_READ_EFI_KEY AmiReadEfikey;
|
|
EFI_EVENT AmiWait;
|
|
EFI_INPUT_RESET TextReset;
|
|
EFI_EVENT TextWait;
|
|
EFI_INPUT_READ_KEY TextReadKeyStroke;
|
|
EFI_INPUT_RESET_EX TextResetEx;
|
|
EFI_INPUT_READ_KEY_EX TextReadKeyStrokeEx;
|
|
EFI_EVENT TextWaitEx;
|
|
} AIK_SOURCE;
|
|
|
|
EFI_STATUS
|
|
AIKSourceGrabEfiKey (
|
|
AIK_SOURCE *Source,
|
|
AMI_EFI_KEY_DATA *KeyData
|
|
);
|
|
|
|
EFI_STATUS
|
|
AIKSourceInstall (
|
|
AIK_SOURCE *Source
|
|
);
|
|
|
|
VOID
|
|
AIKSourceUninstall (
|
|
AIK_SOURCE *Source
|
|
);
|
|
|
|
#endif
|