Initial commit

This commit is contained in:
2026-02-02 04:50:13 +01:00
commit 5b11698731
22592 changed files with 7677434 additions and 0 deletions

View File

@@ -0,0 +1,335 @@
#ifndef KEYCODE_DESCRIPTIONS_H
#define KEYCODE_DESCRIPTIONS_H
#ifdef ENABLE_VKEYBD
static const char *keycodeDescTable[] = {
"",
"",
"",
"",
"",
"",
"",
"",
"Backspace",
"Tab",
"",
"",
"Clear",
"Return",
"",
"",
"",
"",
"",
"Pause",
"",
"",
"",
"",
"",
"",
"",
"Escape",
"",
"",
"",
"",
" ",
"!",
"\"",
"#",
"$",
"%",
"&",
"'",
"(",
")",
"*",
"+",
",",
"-",
".",
"/",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
":",
";",
"<",
"=",
">",
"?",
"@",
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W",
"X",
"Y",
"Z",
"[",
"\\",
"]",
"^",
"_",
"`",
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"i",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"y",
"z",
"{",
"|",
"}",
"~",
"Delete",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
".",
"/",
"*",
"-",
"+",
"Enter",
"=",
"Up",
"Down",
"Right",
"Left",
"Ins",
"Home",
"End",
"Page Up",
"Page Down",
"F1",
"F2",
"F3",
"F4",
"F5",
"F6",
"F7",
"F8",
"F9",
"F10",
"F11",
"F12",
"F13",
"F14",
"F15",
"",
"",
"",
"Num Lock",
"Caps Lock",
"Scroll Lock",
"Shift",
"Shift",
"Ctrl",
"Ctrl",
"Alt",
"Alt",
"Meta",
"Meta",
"Super",
"Super",
"Mode",
"Compose",
"Help",
"Print",
"SysReq",
"Break",
"Menu",
"Power",
"Euro",
"Undo"
};
static const int keycodeDescTableSize = 322;
#endif // #ifdef ENABLE_VKEYBD
#endif // #ifndef KEYCODE_DESCRIPTIONS_H