mirror of
https://github.com/acidanthera/audk.git
synced 2025-05-18 05:20:10 +02:00
https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
60 lines
1.3 KiB
C
60 lines
1.3 KiB
C
/** @file
|
|
|
|
Copyright (c) 2018, Linaro. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __PLATFORM_VIRTUAL_KEYBOARD_H__
|
|
#define __PLATFORM_VIRTUAL_KEYBOARD_H__
|
|
|
|
//
|
|
// Protocol interface structure
|
|
//
|
|
typedef struct _PLATFORM_VIRTUAL_KBD_PROTOCOL PLATFORM_VIRTUAL_KBD_PROTOCOL;
|
|
|
|
typedef struct _VIRTUAL_KBD_KEY VIRTUAL_KBD_KEY;
|
|
|
|
#define VIRTUAL_KEYBOARD_KEY_SIGNATURE SIGNATURE_32 ('v', 'k', 'b', 'd')
|
|
|
|
struct _VIRTUAL_KBD_KEY {
|
|
UINTN Signature;
|
|
EFI_INPUT_KEY Key;
|
|
};
|
|
|
|
typedef
|
|
EFI_STATUS
|
|
(EFIAPI *PLATFORM_VIRTUAL_KBD_REGISTER) (
|
|
IN VOID
|
|
);
|
|
|
|
typedef
|
|
EFI_STATUS
|
|
(EFIAPI *PLATFORM_VIRTUAL_KBD_RESET) (
|
|
IN VOID
|
|
);
|
|
|
|
typedef
|
|
BOOLEAN
|
|
(EFIAPI *PLATFORM_VIRTUAL_KBD_QUERY) (
|
|
IN VIRTUAL_KBD_KEY *VirtualKey
|
|
);
|
|
|
|
typedef
|
|
EFI_STATUS
|
|
(EFIAPI *PLATFORM_VIRTUAL_KBD_CLEAR) (
|
|
IN VIRTUAL_KBD_KEY *VirtualKey
|
|
);
|
|
|
|
struct _PLATFORM_VIRTUAL_KBD_PROTOCOL {
|
|
PLATFORM_VIRTUAL_KBD_REGISTER Register;
|
|
PLATFORM_VIRTUAL_KBD_RESET Reset;
|
|
PLATFORM_VIRTUAL_KBD_QUERY Query;
|
|
PLATFORM_VIRTUAL_KBD_CLEAR Clear;
|
|
};
|
|
|
|
extern EFI_GUID gPlatformVirtualKeyboardProtocolGuid;
|
|
|
|
#endif /* __PLATFORM_VIRTUAL_KEYBOARD_H__ */
|