iPXE
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
b
d
i
p
s
t
u
v
x
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
hci
keymap
keymap_et.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "et" keyboard mapping
4
*
5
* This file is automatically generated; do not edit
6
*
7
*/
8
9
FILE_LICENCE
( PUBLIC_DOMAIN );
10
11
#include <
ipxe/keymap.h
>
12
13
/** "et" basic remapping */
14
static
struct
keymap_key
et_basic
[] = {
15
{ 0x26, 0x2f },
/* '&' => '/' */
16
{ 0x28, 0x29 },
/* '(' => ')' */
17
{ 0x29, 0x3d },
/* ')' => '=' */
18
{ 0x2a, 0x28 },
/* '*' => '(' */
19
{ 0x2b, 0x60 },
/* '+' => '`' */
20
{ 0x2d, 0x2b },
/* '-' => '+' */
21
{ 0x2f, 0x2d },
/* '/' => '-' */
22
{ 0x3c, 0x3b },
/* '<' => ';' */
23
{ 0x3e, 0x3a },
/* '>' => ':' */
24
{ 0x3f, 0x5f },
/* '?' => '_' */
25
{ 0x40, 0x22 },
/* '@' => '"' */
26
{ 0x5c, 0x27 },
/* '\\' => '\'' */
27
{ 0x5e, 0x26 },
/* '^' => '&' */
28
{ 0x5f, 0x3f },
/* '_' => '?' */
29
{ 0x60, 0x5e },
/* '`' => '^' */
30
{ 0x7c, 0x2a },
/* '|' => '*' */
31
{ 0xdc, 0x3c },
/* Pseudo-'\\' => '<' */
32
{ 0xfc, 0x3e },
/* Pseudo-'|' => '>' */
33
{ 0, 0 }
34
};
35
36
/** "et" AltGr remapping */
37
static
struct
keymap_key
et_altgr
[] = {
38
{ 0x26, 0x7b },
/* '&' => '{' */
39
{ 0x28, 0x5d },
/* '(' => ']' */
40
{ 0x29, 0x7d },
/* ')' => '}' */
41
{ 0x2a, 0x5b },
/* '*' => '[' */
42
{ 0x2d, 0x5c },
/* '-' => '\\' */
43
{ 0x30, 0x7d },
/* '0' => '}' */
44
{ 0x32, 0x40 },
/* '2' => '@' */
45
{ 0x34, 0x24 },
/* '4' => '$' */
46
{ 0x37, 0x7b },
/* '7' => '{' */
47
{ 0x38, 0x5b },
/* '8' => '[' */
48
{ 0x39, 0x5d },
/* '9' => ']' */
49
{ 0x5f, 0x5c },
/* '_' => '\\' */
50
{ 0xdc, 0x7c },
/* Pseudo-'\\' => '|' */
51
{ 0, 0 }
52
};
53
54
/** "et" keyboard map */
55
struct
keymap
et_keymap
__keymap
= {
56
.
name
=
"et"
,
57
.basic =
et_basic
,
58
.altgr =
et_altgr
,
59
};
keymap.h
Keyboard mappings.
et_basic
static struct keymap_key et_basic[]
"et" basic remapping
Definition:
keymap_et.c:14
keymap_key
A remapped key.
Definition:
keymap.h:22
et_altgr
static struct keymap_key et_altgr[]
"et" AltGr remapping
Definition:
keymap_et.c:37
keymap::name
const char * name
Name.
Definition:
keymap.h:32
keymap
A keyboard mapping.
Definition:
keymap.h:30
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
__keymap
struct keymap et_keymap __keymap
"et" keyboard map
Definition:
keymap_et.c:55
Generated by
1.8.15