iPXE
keymap_by.c
Go to the documentation of this file.
1/** @file
2 *
3 * "by" 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/** "by" basic remapping */
15static struct keymap_key by_basic[] = {
16 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
17 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
18 { 0, 0 }
19};
20
21/** "by" AltGr remapping */
22static struct keymap_key by_altgr[] = {
23 { 0, 0 }
24};
25
26/** "by" keyboard map */
27struct keymap by_keymap __keymap = {
28 .name = "by",
29 .basic = by_basic,
30 .altgr = by_altgr,
31};
#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 by_altgr[]
"by" AltGr remapping
Definition keymap_by.c:22
static struct keymap_key by_basic[]
"by" basic remapping
Definition keymap_by.c:15
A remapped key.
Definition keymap.h:23
A keyboard mapping.
Definition keymap.h:31