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_no-latin1.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "no-latin1" 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
/** "no-latin1" basic remapping */
14
static
struct
keymap_key
no_latin1_basic
[] = {
15
{ 0x1d, 0x1e },
/* 0x1d => 0x1e */
16
{ 0x26, 0x2f },
/* '&' => '/' */
17
{ 0x28, 0x29 },
/* '(' => ')' */
18
{ 0x29, 0x3d },
/* ')' => '=' */
19
{ 0x2a, 0x28 },
/* '*' => '(' */
20
{ 0x2b, 0x60 },
/* '+' => '`' */
21
{ 0x2d, 0x2b },
/* '-' => '+' */
22
{ 0x2f, 0x2d },
/* '/' => '-' */
23
{ 0x3c, 0x3b },
/* '<' => ';' */
24
{ 0x3d, 0x5c },
/* '=' => '\\' */
25
{ 0x3e, 0x3a },
/* '>' => ':' */
26
{ 0x3f, 0x5f },
/* '?' => '_' */
27
{ 0x40, 0x22 },
/* '@' => '"' */
28
{ 0x5c, 0x27 },
/* '\\' => '\'' */
29
{ 0x5d, 0x7e },
/* ']' => '~' */
30
{ 0x5e, 0x26 },
/* '^' => '&' */
31
{ 0x5f, 0x3f },
/* '_' => '?' */
32
{ 0x60, 0x7c },
/* '`' => '|' */
33
{ 0x7c, 0x2a },
/* '|' => '*' */
34
{ 0x7d, 0x5e },
/* '}' => '^' */
35
{ 0xdc, 0x3c },
/* Pseudo-'\\' => '<' */
36
{ 0xfc, 0x3e },
/* Pseudo-'|' => '>' */
37
{ 0, 0 }
38
};
39
40
/** "no-latin1" AltGr remapping */
41
static
struct
keymap_key
no_latin1_altgr
[] = {
42
{ 0x22, 0x5b },
/* '"' => '[' */
43
{ 0x26, 0x7b },
/* '&' => '{' */
44
{ 0x27, 0x7b },
/* '\'' => '{' */
45
{ 0x28, 0x5d },
/* '(' => ']' */
46
{ 0x29, 0x7d },
/* ')' => '}' */
47
{ 0x2a, 0x5b },
/* '*' => '[' */
48
{ 0x30, 0x7d },
/* '0' => '}' */
49
{ 0x32, 0x40 },
/* '2' => '@' */
50
{ 0x37, 0x7b },
/* '7' => '{' */
51
{ 0x38, 0x5b },
/* '8' => '[' */
52
{ 0x39, 0x5d },
/* '9' => ']' */
53
{ 0x5b, 0x7d },
/* '[' => '}' */
54
{ 0x7b, 0x5d },
/* '{' => ']' */
55
{ 0, 0 }
56
};
57
58
/** "no-latin1" keyboard map */
59
struct
keymap
no_latin1_keymap
__keymap
= {
60
.
name
=
"no-latin1"
,
61
.basic =
no_latin1_basic
,
62
.altgr =
no_latin1_altgr
,
63
};
keymap.h
Keyboard mappings.
no_latin1_basic
static struct keymap_key no_latin1_basic[]
"no-latin1" basic remapping
Definition:
keymap_no-latin1.c:14
keymap_key
A remapped key.
Definition:
keymap.h:22
no_latin1_altgr
static struct keymap_key no_latin1_altgr[]
"no-latin1" AltGr remapping
Definition:
keymap_no-latin1.c:41
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
keymap::name
const char * name
Name.
Definition:
keymap.h:32
__keymap
struct keymap no_latin1_keymap __keymap
"no-latin1" keyboard map
Definition:
keymap_no-latin1.c:59
keymap
A keyboard mapping.
Definition:
keymap.h:30
Generated by
1.8.15