-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.txt
98 lines (83 loc) · 1.87 KB
/
doc.txt
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
92
93
94
95
96
97
98
Putno Fixer by kay27
Algorythm:
1. BACK A CHAR: 8, 37
2. BUFFER: 48-90, 96-111, 186-222
3. ELSE: RESET
Ordered virtual keys on PC keyboard:
Backsp 8 <<
Tab 9 x
Num_Ent 13 x
Enter 13 x
Pause 19 !!!
CapsLck 20 !!
Esc 27 x
Space 32 x
PgUp 33 x
PgDown 34 x
End 35 x
Home 36 x
Left 37 <<
Up 38 x
Right 39 x
Down 40 x
PrtScr 44 ---
Ins 45 ?
Del 46 x
0-9 48-57 C
A-Z 65-90 C
WinL 91 x
WinR 92 x
Menu 93 x
Num_0-0 96-105 C
Num_* 106 C
Num_+ 107 C
Num_- 109 C
Num_. 110 C
Num_/ 111 C
F1-F12 112-123 x
Numlock 144 ---
ScrollL 145 ---
ShiftL 160 ?
ShiftR 161 ?
CtrlL 162 ---
CtrlR 163 ---
AltL 164 x
AltR 165 x
; 186 C
= 187 C
, 188 C
- 189 C
. 190 C
/ 191 C
` 192 C
[ 219 C
\ 220 C
] 221 C
' 222 C
Clipboard format compatibility table:
1 2 3 4 5 6 7 8
1 CF_BITMAP[less] x + +
2 CF_DIB + x +
3 CF_DIBV5 + + x
4 CF_ENHMETAFILE x +
5 CF_METAFILEPICT + x
6 CF_OEMTEXT x + +
7 CF_TEXT + x +
8 CF_UNICODETEXT + + x
https://www.codeproject.com/articles/11372/webcontrols
Change log:
2019-03-18 +various fixes, v1.5
+program handles shift key
+reset buffer when you type after 3 min delay (see config.h)
2019-03-13 v1.4 prevent multiple program start; more fun compilation script
2019-03-13 +config.h and compiler options to disable hotkey detection and use
hard-coded hotkey
2019-03-12 +Hotkey detection (reads from HKCU\Keyboard Layout\Toggle\Hotkey)
Buffer size decreased to 500 chars max
2019-03-10 +More correct virtual code analyzer
+Supported keys Left and Backspace (remove a char from the end of buffer)
2019-03-09 +First alpha version
+Fixes any last typed word (1000 letters max, hard coded)
+Supports only Ctrl+Shift combination (doesn't support Alt+Shift)
+Magic switch key hard coded as Pause/Break
+.exe for vista, windows 7, 8, 10 x64