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