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