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_sr-latin.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "sr-latin" 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
/** "sr-latin" basic remapping */
14
static
struct
keymap_key
sr_latin_basic
[] = {
15
{ 0xdc, 0x3c },
/* Pseudo-'\\' => '<' */
16
{ 0xfc, 0x3e },
/* Pseudo-'|' => '>' */
17
{ 0, 0 }
18
};
19
20
/** "sr-latin" AltGr remapping */
21
static
struct
keymap_key
sr_latin_altgr
[] = {
22
{ 0, 0 }
23
};
24
25
/** "sr-latin" keyboard map */
26
struct
keymap
sr_latin_keymap
__keymap
= {
27
.
name
=
"sr-latin"
,
28
.basic =
sr_latin_basic
,
29
.altgr =
sr_latin_altgr
,
30
};
keymap.h
Keyboard mappings.
keymap_key
A remapped key.
Definition:
keymap.h:22
sr_latin_basic
static struct keymap_key sr_latin_basic[]
"sr-latin" basic remapping
Definition:
keymap_sr-latin.c:14
__keymap
struct keymap sr_latin_keymap __keymap
"sr-latin" keyboard map
Definition:
keymap_sr-latin.c:26
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
keymap::name
const char * name
Name.
Definition:
keymap.h:32
sr_latin_altgr
static struct keymap_key sr_latin_altgr[]
"sr-latin" AltGr remapping
Definition:
keymap_sr-latin.c:21
keymap
A keyboard mapping.
Definition:
keymap.h:30
Generated by
1.8.15