iPXE
keymap_lt.c
Go to the documentation of this file.
1/** @file
2 *
3 * "lt" keyboard mapping
4 *
5 * This file is automatically generated; do not edit
6 *
7 */
8
9FILE_LICENCE ( PUBLIC_DOMAIN );
10FILE_SECBOOT ( PERMITTED );
11
12#include <ipxe/keymap.h>
13
14/** "lt" basic remapping */
15static struct keymap_key lt_basic[] = {
16 { 0, 0 }
17};
18
19/** "lt" AltGr remapping */
20static struct keymap_key lt_altgr[] = {
21 { 0x22, 0x5e }, /* '"' => '^' */
22 { 0x27, 0x5e }, /* '\'' => '^' */
23 { 0x4b, 0x26 }, /* 'K' => '&' */
24 { 0x51, 0x40 }, /* 'Q' => '@' */
25 { 0x71, 0x40 }, /* 'q' => '@' */
26 { 0, 0 }
27};
28
29/** "lt" keyboard map */
30struct keymap lt_keymap __keymap = {
31 .name = "lt",
32 .basic = lt_basic,
33 .altgr = lt_altgr,
34};
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
Keyboard mappings.
#define __keymap
Define a keyboard mapping.
Definition keymap.h:47
static struct keymap_key lt_basic[]
"lt" basic remapping
Definition keymap_lt.c:15
static struct keymap_key lt_altgr[]
"lt" AltGr remapping
Definition keymap_lt.c:20
A remapped key.
Definition keymap.h:23
A keyboard mapping.
Definition keymap.h:31