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