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