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_de.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "de" 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
/** "de" basic remapping */
14
static
struct
keymap_key
de_basic
[] = {
15
{ 0x19, 0x1a },
/* Ctrl-Y => Ctrl-Z */
16
{ 0x1a, 0x19 },
/* Ctrl-Z => Ctrl-Y */
17
{ 0x1c, 0x23 },
/* 0x1c => '#' */
18
{ 0x1d, 0x1e },
/* 0x1d => 0x1e */
19
{ 0x1e, 0x36 },
/* 0x1e => '6' */
20
{ 0x26, 0x2f },
/* '&' => '/' */
21
{ 0x28, 0x29 },
/* '(' => ')' */
22
{ 0x29, 0x3d },
/* ')' => '=' */
23
{ 0x2a, 0x28 },
/* '*' => '(' */
24
{ 0x2b, 0x60 },
/* '+' => '`' */
25
{ 0x2f, 0x2d },
/* '/' => '-' */
26
{ 0x3c, 0x3b },
/* '<' => ';' */
27
{ 0x3e, 0x3a },
/* '>' => ':' */
28
{ 0x3f, 0x5f },
/* '?' => '_' */
29
{ 0x40, 0x22 },
/* '@' => '"' */
30
{ 0x59, 0x5a },
/* 'Y' => 'Z' */
31
{ 0x5a, 0x59 },
/* 'Z' => 'Y' */
32
{ 0x5c, 0x23 },
/* '\\' => '#' */
33
{ 0x5d, 0x2b },
/* ']' => '+' */
34
{ 0x5e, 0x26 },
/* '^' => '&' */
35
{ 0x5f, 0x3f },
/* '_' => '?' */
36
{ 0x60, 0x5e },
/* '`' => '^' */
37
{ 0x79, 0x7a },
/* 'y' => 'z' */
38
{ 0x7a, 0x79 },
/* 'z' => 'y' */
39
{ 0x7c, 0x27 },
/* '|' => '\'' */
40
{ 0x7d, 0x2a },
/* '}' => '*' */
41
{ 0xdc, 0x3c },
/* Pseudo-'\\' => '<' */
42
{ 0xfc, 0x3e },
/* Pseudo-'|' => '>' */
43
{ 0, 0 }
44
};
45
46
/** "de" AltGr remapping */
47
static
struct
keymap_key
de_altgr
[] = {
48
{ 0x26, 0x7b },
/* '&' => '{' */
49
{ 0x28, 0x5d },
/* '(' => ']' */
50
{ 0x29, 0x7d },
/* ')' => '}' */
51
{ 0x2a, 0x5b },
/* '*' => '[' */
52
{ 0x2d, 0x5c },
/* '-' => '\\' */
53
{ 0x30, 0x7d },
/* '0' => '}' */
54
{ 0x37, 0x7b },
/* '7' => '{' */
55
{ 0x38, 0x5b },
/* '8' => '[' */
56
{ 0x39, 0x5d },
/* '9' => ']' */
57
{ 0x3a, 0x7e },
/* ':' => '~' */
58
{ 0x3b, 0x7e },
/* ';' => '~' */
59
{ 0x51, 0x40 },
/* 'Q' => '@' */
60
{ 0x5d, 0x7e },
/* ']' => '~' */
61
{ 0x5f, 0x5c },
/* '_' => '\\' */
62
{ 0x71, 0x40 },
/* 'q' => '@' */
63
{ 0x7c, 0x7e },
/* '|' => '~' */
64
{ 0x7d, 0x7e },
/* '}' => '~' */
65
{ 0xdc, 0x7c },
/* Pseudo-'\\' => '|' */
66
{ 0, 0 }
67
};
68
69
/** "de" keyboard map */
70
struct
keymap
de_keymap
__keymap
= {
71
.
name
=
"de"
,
72
.basic =
de_basic
,
73
.altgr =
de_altgr
,
74
};
keymap.h
Keyboard mappings.
de_basic
static struct keymap_key de_basic[]
"de" basic remapping
Definition:
keymap_de.c:14
keymap_key
A remapped key.
Definition:
keymap.h:22
__keymap
struct keymap de_keymap __keymap
"de" keyboard map
Definition:
keymap_de.c:70
de_altgr
static struct keymap_key de_altgr[]
"de" AltGr remapping
Definition:
keymap_de.c:47
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
keymap::name
const char * name
Name.
Definition:
keymap.h:32
keymap
A keyboard mapping.
Definition:
keymap.h:30
Generated by
1.8.15