-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscancodes.h
91 lines (90 loc) · 938 Bytes
/
scancodes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#pragma once
char scancodes_down[] =
{
'\0',
0/*escape*/,
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'0',
'-',
'=',
'\b'/*backspace*/,
'\t'/*tab*/,
'Q',
'W',
'E',
'R',
'T',
'Y',
'U',
'I',
'O',
'P',
'[',
']',
0/*enter*/,
0/*left control*/,
'A',
'S',
'D',
'F',
'G',
'H',
'J',
'K',
'L',
';',
'\''/*single quote*/,
'`'/*back tick*/,
0/*left shift*/,
'\\',
'Z',
'X',
'C',
'V',
'B',
'N',
'M',
',',
'.',
'/',
0/*right shift*/,
'*'/*(keypad)*/,
0/*left alt*/,
' '/*space*/,
0/*CapsLock*/,
0/*F1*/,
0/*F2*/,
0/*F3*/,
0/*F4*/,
0/*F5*/,
0/*F6*/,
0/*F7*/,
0/*F8*/,
0/*F9*/,
0/*F10*/,
0/*NumberLock*/,
0/*ScrollLock*/,
'7'/*(keypad)*/,
'8'/*(keypad)*/,
'9'/*(keypad)*/,
'-'/*(keypad)*/,
'4'/*(keypad)*/,
'5'/*(keypad)*/,
'6'/*(keypad)*/,
'+'/*(keypad)*/,
'1'/*(keypad)*/,
'2'/*(keypad)*/,
'3'/*(keypad)*/,
'0'/*(keypad)*/,
'.'/*(keypad)*/,
0/*F11*/,
0/*F12*/
};