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