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_cf.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "cf" 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
/** "cf" basic remapping */
14
static
struct
keymap_key
cf_basic
[] = {
15
{ 0x22, 0x60 },
/* '"' => '`' */
16
{ 0x23, 0x2f },
/* '#' => '/' */
17
{ 0x27, 0x60 },
/* '\'' => '`' */
18
{ 0x3c, 0x27 },
/* '<' => '\'' */
19
{ 0x3e, 0x2e },
/* '>' => '.' */
20
{ 0x40, 0x22 },
/* '@' => '"' */
21
{ 0x5b, 0x5e },
/* '[' => '^' */
22
{ 0x5c, 0x3c },
/* '\\' => '<' */
23
{ 0x5e, 0x3f },
/* '^' => '?' */
24
{ 0x60, 0x23 },
/* '`' => '#' */
25
{ 0x7b, 0x5e },
/* '{' => '^' */
26
{ 0x7c, 0x3e },
/* '|' => '>' */
27
{ 0x7e, 0x7c },
/* '~' => '|' */
28
{ 0, 0 }
29
};
30
31
/** "cf" AltGr remapping */
32
static
struct
keymap_key
cf_altgr
[] = {
33
{ 0x22, 0x7b },
/* '"' => '{' */
34
{ 0x27, 0x7b },
/* '\'' => '{' */
35
{ 0x32, 0x40 },
/* '2' => '@' */
36
{ 0x3a, 0x7e },
/* ':' => '~' */
37
{ 0x3b, 0x7e },
/* ';' => '~' */
38
{ 0x5c, 0x7d },
/* '\\' => '}' */
39
{ 0x60, 0x5c },
/* '`' => '\\' */
40
{ 0x7b, 0x5b },
/* '{' => '[' */
41
{ 0x7c, 0x7d },
/* '|' => '}' */
42
{ 0x7d, 0x5d },
/* '}' => ']' */
43
{ 0x7e, 0x5c },
/* '~' => '\\' */
44
{ 0, 0 }
45
};
46
47
/** "cf" keyboard map */
48
struct
keymap
cf_keymap
__keymap
= {
49
.
name
=
"cf"
,
50
.basic =
cf_basic
,
51
.altgr =
cf_altgr
,
52
};
keymap.h
Keyboard mappings.
keymap_key
A remapped key.
Definition:
keymap.h:22
cf_altgr
static struct keymap_key cf_altgr[]
"cf" AltGr remapping
Definition:
keymap_cf.c:32
keymap::name
const char * name
Name.
Definition:
keymap.h:32
__keymap
struct keymap cf_keymap __keymap
"cf" keyboard map
Definition:
keymap_cf.c:48
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
keymap
A keyboard mapping.
Definition:
keymap.h:30
cf_basic
static struct keymap_key cf_basic[]
"cf" basic remapping
Definition:
keymap_cf.c:14
Generated by
1.8.15