]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/SimpleTextIn.h
add a error macro to prevent this file from included for now #error "UEFI 2.1 HII...
[mirror_edk2.git] / MdePkg / Include / Protocol / SimpleTextIn.h
CommitLineData
d1f95000 1/** @file\r
2 Simple Text In protocol from the EFI 1.0 specification.\r
3\r
4 Abstraction of a very simple input device like a keyboard or serial\r
5 terminal.\r
6\r
7 Copyright (c) 2006, Intel Corporation \r
8 All rights reserved. This program and the accompanying materials \r
9 are licensed and made available under the terms and conditions of the BSD License \r
10 which accompanies this distribution. The full text of the license may be found at \r
11 http://opensource.org/licenses/bsd-license.php \r
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
15\r
d1f95000 16**/\r
17\r
18#ifndef __SIMPLE_TEXT_IN_PROTOCOL_H__\r
19#define __SIMPLE_TEXT_IN_PROTOCOL_H__\r
20\r
a6508c05 21#define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \\r
d1f95000 22 { \\r
23 0x387477c1, 0x69c7, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \\r
24 }\r
25\r
a6508c05 26//\r
27// Protocol GUID defined in EFI1.1.\r
28// \r
29#define SIMPLE_INPUT_PROTOCOL EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID\r
d1f95000 30\r
a6508c05 31typedef struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL EFI_SIMPLE_TEXT_INPUT_PROTOCOL;\r
d1f95000 32\r
a6508c05 33//\r
34// Backward-compatible with EFI1.1.\r
35// \r
36typedef struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL SIMPLE_INPUT_INTERFACE;\r
d1f95000 37//\r
38// Data structures\r
39//\r
40typedef struct {\r
41 UINT16 ScanCode;\r
42 CHAR16 UnicodeChar;\r
43} EFI_INPUT_KEY;\r
44\r
45//\r
46// Required unicode control chars\r
47//\r
48#define CHAR_NULL 0x0000\r
49#define CHAR_BACKSPACE 0x0008\r
50#define CHAR_TAB 0x0009\r
51#define CHAR_LINEFEED 0x000A\r
52#define CHAR_CARRIAGE_RETURN 0x000D\r
53\r
54//\r
55// EFI Scan codes\r
56//\r
57#define SCAN_NULL 0x0000\r
58#define SCAN_UP 0x0001\r
59#define SCAN_DOWN 0x0002\r
60#define SCAN_RIGHT 0x0003\r
61#define SCAN_LEFT 0x0004\r
62#define SCAN_HOME 0x0005\r
63#define SCAN_END 0x0006\r
64#define SCAN_INSERT 0x0007\r
65#define SCAN_DELETE 0x0008\r
66#define SCAN_PAGE_UP 0x0009\r
67#define SCAN_PAGE_DOWN 0x000A\r
68#define SCAN_F1 0x000B\r
69#define SCAN_F2 0x000C\r
70#define SCAN_F3 0x000D\r
71#define SCAN_F4 0x000E\r
72#define SCAN_F5 0x000F\r
73#define SCAN_F6 0x0010\r
74#define SCAN_F7 0x0011\r
75#define SCAN_F8 0x0012\r
76#define SCAN_F9 0x0013\r
77#define SCAN_F10 0x0014\r
78#define SCAN_F11 0x0015\r
79#define SCAN_F12 0x0016\r
80#define SCAN_ESC 0x0017\r
81\r
82/**\r
83 Reset the input device and optionaly run diagnostics\r
84\r
85 @param This Protocol instance pointer.\r
86 @param ExtendedVerification Driver may perform diagnostics on reset.\r
87\r
88 @retval EFI_SUCCESS The device was reset.\r
89 @retval EFI_DEVICE_ERROR The device is not functioning properly and could not be reset.\r
90\r
91**/\r
92typedef\r
93EFI_STATUS\r
94(EFIAPI *EFI_INPUT_RESET) (\r
a6508c05 95 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
d1f95000 96 IN BOOLEAN ExtendedVerification\r
97 )\r
98;\r
99\r
100/**\r
101 Reads the next keystroke from the input device. The WaitForKey Event can \r
102 be used to test for existance of a keystroke via WaitForEvent () call.\r
103\r
104 @param This Protocol instance pointer.\r
105 @param Key Driver may perform diagnostics on reset.\r
106\r
107 @retval EFI_SUCCESS The keystroke information was returned.\r
108 @retval EFI_NOT_READY There was no keystroke data availiable.\r
109 @retval EFI_DEVICE_ERROR The keydtroke information was not returned due to\r
110 hardware errors.\r
111\r
112**/\r
113typedef\r
114EFI_STATUS\r
115(EFIAPI *EFI_INPUT_READ_KEY) (\r
a6508c05 116 IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *This,\r
d1f95000 117 OUT EFI_INPUT_KEY *Key\r
118 )\r
119;\r
120\r
a6508c05 121struct _EFI_SIMPLE_TEXT_INPUT_PROTOCOL {\r
d1f95000 122 EFI_INPUT_RESET Reset;\r
123 EFI_INPUT_READ_KEY ReadKeyStroke;\r
124 EFI_EVENT WaitForKey;\r
125};\r
126\r
127extern EFI_GUID gEfiSimpleTextInProtocolGuid;\r
128\r
129#endif\r