iPXE
keymap_ro.c
Go to the documentation of this file.
1/** @file
2 *
3 * "ro" 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/** "ro" basic remapping */
15static struct keymap_key ro_basic[] = {
16 { 0, 0 }
17};
18
19/** "ro" AltGr remapping */
20static struct keymap_key ro_altgr[] = {
21 { 0, 0 }
22};
23
24/** "ro" keyboard map */
25struct keymap ro_keymap __keymap = {
26 .name = "ro",
27 .basic = ro_basic,
28 .altgr = ro_altgr,
29};
#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 ro_altgr[]
"ro" AltGr remapping
Definition keymap_ro.c:20
static struct keymap_key ro_basic[]
"ro" basic remapping
Definition keymap_ro.c:15
A remapped key.
Definition keymap.h:23
A keyboard mapping.
Definition keymap.h:31