iPXE
keymap_gr.c File Reference

"gr" keyboard mapping More...

#include <ipxe/keymap.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (PUBLIC_DOMAIN)
 FILE_SECBOOT (PERMITTED)

Variables

static struct keymap_key gr_basic []
 "gr" basic remapping
static struct keymap_key gr_altgr []
 "gr" AltGr remapping
struct keymap gr_keymap __keymap
 "gr" keyboard map

Detailed Description

"gr" keyboard mapping

This file is automatically generated; do not edit

Definition in file keymap_gr.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( PUBLIC_DOMAIN )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ gr_basic

struct keymap_key gr_basic[]
static
Initial value:
= {
{ 0xdc, 0x3c },
{ 0xfc, 0x3e },
{ 0, 0 }
}

"gr" basic remapping

Definition at line 15 of file keymap_gr.c.

15 {
16 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
17 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
18 { 0, 0 }
19};

◆ gr_altgr

struct keymap_key gr_altgr[]
static
Initial value:
= {
{ 0, 0 }
}

"gr" AltGr remapping

Definition at line 22 of file keymap_gr.c.

22 {
23 { 0, 0 }
24};

◆ __keymap

struct keymap gr_keymap __keymap
Initial value:
= {
.name = "gr",
.basic = gr_basic,
.altgr = gr_altgr,
}
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

"gr" keyboard map

Definition at line 27 of file keymap_gr.c.

27 {
28 .name = "gr",
29 .basic = gr_basic,
30 .altgr = gr_altgr,
31};