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_mt.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "mt" 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
/** "mt" basic remapping */
14
static
struct
keymap_key
mt_basic
[] = {
15
{ 0x1c, 0x1e },
/* 0x1c => 0x1e */
16
{ 0x22, 0x40 },
/* '"' => '@' */
17
{ 0x40, 0x22 },
/* '@' => '"' */
18
{ 0x5c, 0x23 },
/* '\\' => '#' */
19
{ 0x7c, 0x7e },
/* '|' => '~' */
20
{ 0, 0 }
21
};
22
23
/** "mt" AltGr remapping */
24
static
struct
keymap_key
mt_altgr
[] = {
25
{ 0x26, 0x7b },
/* '&' => '{' */
26
{ 0x28, 0x5d },
/* '(' => ']' */
27
{ 0x29, 0x7d },
/* ')' => '}' */
28
{ 0x2a, 0x5b },
/* '*' => '[' */
29
{ 0x30, 0x7d },
/* '0' => '}' */
30
{ 0x37, 0x7b },
/* '7' => '{' */
31
{ 0x38, 0x5b },
/* '8' => '[' */
32
{ 0x39, 0x5d },
/* '9' => ']' */
33
{ 0x5c, 0x60 },
/* '\\' => '`' */
34
{ 0x7e, 0x60 },
/* '~' => '`' */
35
{ 0, 0 }
36
};
37
38
/** "mt" keyboard map */
39
struct
keymap
mt_keymap
__keymap
= {
40
.
name
=
"mt"
,
41
.basic =
mt_basic
,
42
.altgr =
mt_altgr
,
43
};
keymap.h
Keyboard mappings.
keymap_key
A remapped key.
Definition:
keymap.h:22
mt_altgr
static struct keymap_key mt_altgr[]
"mt" AltGr remapping
Definition:
keymap_mt.c:24
mt_basic
static struct keymap_key mt_basic[]
"mt" basic remapping
Definition:
keymap_mt.c:14
__keymap
struct keymap mt_keymap __keymap
"mt" keyboard map
Definition:
keymap_mt.c:39
keymap::name
const char * name
Name.
Definition:
keymap.h:32
keymap
A keyboard mapping.
Definition:
keymap.h:30
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
Generated by
1.8.15