ReactOS 0.4.16-dev-141-g4c84e19
kbdcan.c
Go to the documentation of this file.
1/*
2 * ReactOS Canadian Multilingual Standard Keyboard layout
3 * Copyright (C) 2008 ReactOS
4 * Author: Dmitry Chapyshev
5 * License: LGPL, see: LGPL.txt
6 *
7 * Thanks to: http://www.barcodeman.com/altek/mule/scandoc.php
8 * and http://win.tue.nl/~aeb/linux/kbd/scancodes-1.html
9 */
10
11#define WIN32_NO_STATUS
12#include <stdarg.h>
13#include <windef.h>
14#include <winuser.h>
15#include <ndk/kbd.h>
16
17#ifdef _M_IA64
18#define ROSDATA static __declspec(allocate(".data"))
19#else
20#ifdef _MSC_VER
21#pragma data_seg(".data")
22#define ROSDATA static
23#else
24#define ROSDATA static __attribute__((section(".data")))
25#endif
26#endif
27
28#define VK_EMPTY 0xff /* The non-existent VK */
29
30#define KNUMS KBDNUMPAD|KBDSPECIAL /* Special + number pad */
31#define KMEXT KBDEXT|KBDMULTIVK /* Multi + ext */
32
34 /* Numbers Row */
35 /* - 00 - */
36 /* 1 ... 2 ... 3 ... 4 ... */
37 VK_EMPTY, VK_ESCAPE, '1', '2',
38 '3', '4', '5', '6',
39 '7', '8', '9', '0',
40 VK_OEM_MINUS, VK_OEM_PLUS, VK_BACK,
41 /* - 0f - */
42 /* First Letters Row */
43 VK_TAB, 'Q', 'W', 'E',
44 'R', 'T', 'Y', 'U',
45 'I', 'O', 'P',
47 /* - 1d - */
48 /* Second Letters Row */
50 'A', 'S', 'D', 'F',
51 'G', 'H', 'J', 'K',
54 /* - 2c - */
55 /* Third letters row */
56 'Z', 'X', 'C', 'V',
57 'B', 'N', 'M', VK_OEM_COMMA,
58 VK_OEM_PERIOD,VK_OEM_2, VK_RSHIFT | KBDEXT,
59 /* - 37 - */
60 /* Bottom Row */
62
63 /* - 3b - */
64 /* F-Keys */
67 /* - 45 - */
68 /* Locks */
71 /* - 47 - */
72 /* Number-Pad */
77 /* - 54 - */
78 /* Presumably PrtSc */
80 /* - 55 - */
81 /* Oddities, and the remaining standard F-Keys */
82 VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
83 /* - 59 - */
86 VK_HELP,
87 /* - 64 - */
88 /* Even more F-Keys (for example, NCR keyboards from the early 90's) */
91 /* - 6f - */
92 /* Not sure who uses these codes */
94 /* - 72 - */
96 /* - 76 - */
97 /* One more f-key */
98 VK_F24,
99 /* - 77 - */
101 VK_OEM_PA1, VK_TAB, 0xc2, VK_EMPTY, /* PA1 */
102 VK_EMPTY,
103};
104
106 { 0x10, VK_MEDIA_PREV_TRACK | KBDEXT },
107 { 0x19, VK_MEDIA_NEXT_TRACK | KBDEXT },
108 { 0x1D, VK_RCONTROL | KBDEXT },
109 { 0x20, VK_VOLUME_MUTE | KBDEXT },
110 { 0x21, VK_LAUNCH_APP2 | KBDEXT },
111 { 0x22, VK_MEDIA_PLAY_PAUSE | KBDEXT },
112 { 0x24, VK_MEDIA_STOP | KBDEXT },
113 { 0x2E, VK_VOLUME_DOWN | KBDEXT },
114 { 0x30, VK_VOLUME_UP | KBDEXT },
115 { 0x32, VK_BROWSER_HOME | KBDEXT },
116 { 0x35, VK_DIVIDE | KBDEXT },
117 { 0x37, VK_SNAPSHOT | KBDEXT },
118 { 0x38, VK_RMENU | KBDEXT },
119 { 0x47, VK_HOME | KBDEXT },
120 { 0x48, VK_UP | KBDEXT },
121 { 0x49, VK_PRIOR | KBDEXT },
122 { 0x4B, VK_LEFT | KBDEXT },
123 { 0x4D, VK_RIGHT | KBDEXT },
124 { 0x4F, VK_END | KBDEXT },
125 { 0x50, VK_DOWN | KBDEXT },
126 { 0x51, VK_NEXT | KBDEXT },
127 { 0x52, VK_INSERT | KBDEXT },
128 { 0x53, VK_DELETE | KBDEXT },
129 { 0x5B, VK_LWIN | KBDEXT },
130 { 0x5C, VK_RWIN | KBDEXT },
131 { 0x5D, VK_APPS | KBDEXT },
132 { 0x5F, VK_SLEEP | KBDEXT },
133 { 0x65, VK_BROWSER_SEARCH | KBDEXT },
134 { 0x66, VK_BROWSER_FAVORITES | KBDEXT },
135 { 0x67, VK_BROWSER_REFRESH | KBDEXT },
136 { 0x68, VK_BROWSER_STOP | KBDEXT },
137 { 0x69, VK_BROWSER_FORWARD | KBDEXT },
138 { 0x6A, VK_BROWSER_BACK | KBDEXT },
139 { 0x6B, VK_LAUNCH_APP1 | KBDEXT },
140 { 0x6C, VK_LAUNCH_MAIL | KBDEXT },
141 { 0x6D, VK_LAUNCH_MEDIA_SELECT | KBDEXT },
142 { 0x1C, VK_RETURN | KBDEXT },
143 { 0x46, VK_CANCEL | KBDEXT },
144 { 0, 0 },
145};
146
148 { 0x1d, VK_PAUSE},
149 { 0, 0 },
150};
151
153 { VK_SHIFT, KBDSHIFT },
154 { VK_CONTROL, KBDCTRL },
155 { VK_MENU, KBDALT },
156 { VK_OEM_8, 8 },
157 { 0, 0 }
158};
159
162 9,
163 { 0, 1, 5, SHFT_INVALID, SHFT_INVALID, SHFT_INVALID, 4, SHFT_INVALID, 2, 3 }
164};
165
166ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
167 /* Normal Shifted */
168 { VK_DECIMAL, 0, {'.', '.'} },
169 { VK_TAB, 0, {'\t', '\t'} },
170 { VK_ADD, 0, {'+', '+' } },
171 { VK_DIVIDE, 0, {'/', '/' } },
172 { VK_MULTIPLY,0, {'*', '*' } },
173 { VK_SUBTRACT,0, {'-', '-' } },
174 { 0, 0 }
175};
176
177ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
178 { '2', 0, {'2', '@', 0x00b2} },
179 { 'K', CAPLOK, {'k', 'K', 0x0138} },
180 { 0, 0 }
181};
182
183ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
184 { '1', 0, {'1', '!', 0x00b9, 0x00a1 } },
185 { '3', 0, {'3', '#', 0x00b3, 0x00a3 } },
186 { '4', 0, {'4', '$', 0x00bc, 0x00a4 } },
187 { '5', 0, {'5', '%', 0x00bd, 0x215c } },
188 { '6', 0, {'6', '?', 0x00be, 0x215d } },
189 { VK_OEM_MINUS,0, {'-', '_', WCH_NONE, 0x00bf } },
190 { 'Q', CAPLOK, {'q', 'Q', WCH_NONE, 0x2126 } },
191 { 'W', CAPLOK, {'w', 'W', 0x0142, 0x0141 } },
192 { 'E', CAPLOK, {'e', 'E', 0x0153, 0x0152 } },
193 { 'R', CAPLOK, {'r', 'R', 0x00b6, 0x00ae } },
194 { 'T', CAPLOK, {'t', 'T', 0x0167, 0x0166 } },
195 { 'Y', CAPLOK, {'y', 'Y', 0x2190, 0x00a5 } },
196 { 'U', CAPLOK, {'u', 'U', 0x2193, 0x2191 } },
197 { 'I', CAPLOK, {'i', 'I', 0x2192, 0x0131 } },
198 { 'O', CAPLOK, {'o', 'O', 0x00f8, 0x00d8 } },
199 { 'P', CAPLOK, {'p', 'P', 0x00fe, 0x00de } },
200 { VK_OEM_5, CAPLOK, {0x00e0, 0x00c0, WCH_NONE, WCH_DEAD} },
201 { 0xff, 0, {WCH_NONE, WCH_NONE,WCH_NONE, 0x02d8 } },
202 { 'A', CAPLOK, {'a', 'A', 0x00e6, 0x00c6 } },
203 { 'S', CAPLOK, {'s', 'S', 0x00df, 0x00a7 } },
204 { 'D', CAPLOK, {'d', 'D', 0x00f0, 0x00d0 } },
205 { 'F', CAPLOK, {'f', 'F', WCH_NONE, 0x00aa } },
206 { 'G', CAPLOK, {'g', 'G', 0x014b, 0x014a } },
207 { 'H', CAPLOK, {'h', 'H', 0x0127, 0x0126 } },
208 { 'J', CAPLOK, {'j', 'J', 0x0133, 0x0132 } },
209 { 'L', CAPLOK, {'l', 'L', 0x0140, 0x013f } },
210 { VK_OEM_3, CAPLOK, {0x00e8, 0x00c8, WCH_NONE, WCH_DEAD} },
211 { 0xff, 0, {WCH_NONE, WCH_NONE,WCH_NONE, 0x02c7 } },
212 { 'C', CAPLOK, {'c', 'C', 0x00a2, 0x00a9 } },
213 { 'V', CAPLOK, {'v', 'V', 0x201c, 0x2018 } },
214 { 'B', CAPLOK, {'b', 'B', 0x201d, 0x2019 } },
215 { 'N', CAPLOK, {'n', 'N', 0x0149, 0x266a } },
216 { 'M', CAPLOK, {'m', 'M', 0x00b5, 0x00ba } },
217 { VK_OEM_2, CAPLOK, {0x00e9, 0x00c9, WCH_NONE, WCH_DEAD} },
218 { 0xff, 0, {WCH_NONE, WCH_NONE,WCH_NONE, 0x02d9 } },
219 { VK_OEM_102, CAPLOK, {0x00f9, 0x00d9, WCH_NONE, 0x00a6 } },
220 { 0, 0 }
221};
222
223ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[] = {
224 { VK_OEM_7, 0, {'/', '\\', WCH_NONE, 0x00ad, '|' } },
225 { '7', 0, {'7', '&', WCH_NONE, 0x215e, '{' } },
226 { '8', 0, {'8', '*', WCH_NONE, 0x2122, '}' } },
227 { '9', 0, {'9', '(', WCH_NONE, 0x00b1, '[' } },
228 { '0', 0, {'0', ')', WCH_NONE, WCH_NONE,']' } },
229 { VK_OEM_PLUS, 0, {'=', '+', WCH_DEAD, WCH_DEAD,0x00ac } },
230 { 0xff, 0, {WCH_NONE, WCH_NONE, 0x00b8, 0x02db, WCH_NONE} },
232 { 0xff, 0, {'^', 0x00a8, WCH_NONE, 0x02da, '`' } },
233 { VK_OEM_6, CAPLOK, {0x00e7, 0x00c7, '~', WCH_DEAD,WCH_DEAD} },
234 { 0xff, 0, {WCH_NONE, WCH_NONE, WCH_NONE, 0x00af, '~' } },
235 { VK_OEM_1, 0, {';', ':', WCH_DEAD, WCH_DEAD,0x00b0 } },
236 { 0xff, 0, {WCH_NONE, WCH_NONE, 0x00b4, 0x02dd, WCH_NONE} },
237 { 'Z', CAPLOK, {'z', 'Z', WCH_NONE, WCH_NONE,0x00ab } },
238 { 'X', CAPLOK, {'x', 'X', WCH_NONE, WCH_NONE,0x00bb } },
239 { VK_OEM_COMMA, 0, {',', '\'', 0x2015, 0x00d7, '<' } },
240 { VK_OEM_PERIOD,0, {'.', '\"', WCH_DEAD, 0x00f7, '>' } },
241 { 0xff, 0, {WCH_NONE ,WCH_NONE, 0x02d9, WCH_NONE,WCH_NONE} },
242 { 0, 0 }
243};
244
245ROSDATA VK_TO_WCHARS6 key_to_chars_6mod[] = {
246 { VK_SPACE, 0, {' ', ' ', ' ', ' ', 0x00a0, ' ' } },
247 { VK_BACK, 0, {'\b', '\b', WCH_NONE, WCH_NONE, WCH_NONE, 0x007f} },
248 { VK_ESCAPE, 0, {0x001b, 0x001b, WCH_NONE, WCH_NONE, WCH_NONE, 0x001b} },
249 { VK_RETURN, 0, {'\r', '\r', WCH_NONE, WCH_NONE, WCH_NONE, '\n' } },
250 { VK_CANCEL, 0, {0x0003, 0x0003, WCH_NONE, WCH_NONE, WCH_NONE, 0x0003} },
251 { 0, 0 }
252};
253
254ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
255 { VK_NUMPAD0, 0, {'0'} },
256 { VK_NUMPAD1, 0, {'1'} },
257 { VK_NUMPAD2, 0, {'2'} },
258 { VK_NUMPAD3, 0, {'3'} },
259 { VK_NUMPAD4, 0, {'4'} },
260 { VK_NUMPAD5, 0, {'5'} },
261 { VK_NUMPAD6, 0, {'6'} },
262 { VK_NUMPAD7, 0, {'7'} },
263 { VK_NUMPAD8, 0, {'8'} },
264 { VK_NUMPAD9, 0, {'9'} },
265 { 0, 0 }
266};
267
268#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
269
277 { 0,0,0 }
278};
279
281 { 0x01, L"Esc" },
282 { 0x0e, L"Backspace" },
283 { 0x0f, L"Tab" },
284 { 0x1c, L"Enter" },
285 { 0x1d, L"Ctrl" },
286 { 0x2a, L"Shift" },
287 { 0x36, L"Right Shift" },
288 { 0x37, L"Num *" },
289 { 0x38, L"Alt" },
290 { 0x39, L"Space" },
291 { 0x3a, L"CAPLOK Lock" },
292 { 0x3b, L"F1" },
293 { 0x3c, L"F2" },
294 { 0x3d, L"F3" },
295 { 0x3e, L"F4" },
296 { 0x3f, L"F5" },
297 { 0x40, L"F6" },
298 { 0x41, L"F7" },
299 { 0x42, L"F8" },
300 { 0x43, L"F9" },
301 { 0x44, L"F10" },
302 { 0x45, L"Pause" },
303 { 0x46, L"Scroll Lock" },
304 { 0x47, L"Num 7" },
305 { 0x48, L"Num 8" },
306 { 0x49, L"Num 9" },
307 { 0x4a, L"Num -" },
308 { 0x4b, L"Num 4" },
309 { 0x4c, L"Num 5" },
310 { 0x4d, L"Num 6" },
311 { 0x4e, L"Num +" },
312 { 0x4f, L"Num 1" },
313 { 0x50, L"Num 2" },
314 { 0x51, L"Num 3" },
315 { 0x52, L"Num 0" },
316 { 0x53, L"Num Del" },
317 { 0x54, L"Sys Req" },
318 { 0x57, L"F11" },
319 { 0x58, L"F12" },
320 { 0x7c, L"F13" },
321 { 0x7d, L"F14" },
322 { 0x7e, L"F15" },
323 { 0x7f, L"F16" },
324 { 0x80, L"F17" },
325 { 0x81, L"F18" },
326 { 0x82, L"F19" },
327 { 0x83, L"F20" },
328 { 0x84, L"F21" },
329 { 0x85, L"F22" },
330 { 0x86, L"F23" },
331 { 0x87, L"F24" },
332 { 0, NULL }
333};
334
336 { 0x1c, L"Num Enter" },
337 { 0x1d, L"Right Control" },
338 { 0x35, L"Num /" },
339 { 0x37, L"Prnt Scrn" },
340 { 0x38, L"Right Alt" },
341 { 0x45, L"Num Lock" },
342 { 0x46, L"Break" },
343 { 0x47, L"Home" },
344 { 0x48, L"Up" },
345 { 0x49, L"Page Up" },
346 { 0x4b, L"Left" },
347//{ 0x4c, L"Center" },
348 { 0x4d, L"Right" },
349 { 0x4f, L"End" },
350 { 0x50, L"Down" },
351 { 0x51, L"Page Down" },
352 { 0x52, L"Insert" },
353 { 0x53, L"Delete" },
354 { 0x54, L"<ReactOS>" },
355 { 0x56, L"Help" },
356 { 0x5b, L"Left <ReactOS>" },
357 { 0x5c, L"Right <ReactOS>" },
358 { 0x5d, L"Application" },
359 { 0, NULL }
360};
361
363 L"\x00b4" L"ACCENT AIGU",
364 L"`" L"ACCENT GRAVE",
365 L"^" L"ACCENT CIRCONFLEXE",
366 L"\x00a8" L"TREMA",
367 L"\x00b8" L"CEDILLE",
368 NULL
369};
370
371#define DEADTRANS(ch, accent, comp, flags) MAKELONG(ch, accent), comp, flags
372
374 { DEADTRANS(L'a', 0x00b4, 0x00e1, 0x0000) },
375 { DEADTRANS(L'e', 0x00b4, 0x00e9, 0x0000) },
376 { DEADTRANS(L'i', 0x00b4, 0x00ed, 0x0000) },
377 { DEADTRANS(L'o', 0x00b4, 0x00f3, 0x0000) },
378 { DEADTRANS(L'u', 0x00b4, 0x00fa, 0x0000) },
379 { DEADTRANS(L'y', 0x00b4, 0x00fd, 0x0000) },
380 { DEADTRANS(L'A', 0x00b4, 0x00c1, 0x0000) },
381 { DEADTRANS(L'E', 0x00b4, 0x00c9, 0x0000) },
382 { DEADTRANS(L'I', 0x00b4, 0x00cd, 0x0000) },
383 { DEADTRANS(L'O', 0x00b4, 0x00d3, 0x0000) },
384 { DEADTRANS(L'U', 0x00b4, 0x00da, 0x0000) },
385 { DEADTRANS(L'Y', 0x00b4, 0x00dd, 0x0000) },
386 { DEADTRANS(L'C', 0x00b4, 0x0106, 0x0000) },
387 { DEADTRANS(L'c', 0x00b4, 0x0107, 0x0000) },
388 { DEADTRANS(L'L', 0x00b4, 0x0139, 0x0000) },
389 { DEADTRANS(L'l', 0x00b4, 0x013a, 0x0000) },
390 { DEADTRANS(L'N', 0x00b4, 0x0143, 0x0000) },
391 { DEADTRANS(L'n', 0x00b4, 0x0144, 0x0000) },
392 { DEADTRANS(L'R', 0x00b4, 0x0154, 0x0000) },
393 { DEADTRANS(L'r', 0x00b4, 0x0155, 0x0000) },
394 { DEADTRANS(L'S', 0x00b4, 0x015a, 0x0000) },
395 { DEADTRANS(L's', 0x00b4, 0x015b, 0x0000) },
396 { DEADTRANS(L'Z', 0x00b4, 0x0179, 0x0000) },
397 { DEADTRANS(L'z', 0x00b4, 0x017a, 0x0000) },
398 { DEADTRANS(L' ', 0x00b4, 0x00b4, 0x0000) },
399
400 { DEADTRANS(L'a', L'`', 0x00e0, 0x0000) },
401 { DEADTRANS(L'e', L'`', 0x00e8, 0x0000) },
402 { DEADTRANS(L'i', L'`', 0x00ec, 0x0000) },
403 { DEADTRANS(L'o', L'`', 0x00f2, 0x0000) },
404 { DEADTRANS(L'u', L'`', 0x00f9, 0x0000) },
405 { DEADTRANS(L'A', L'`', 0x00c0, 0x0000) },
406 { DEADTRANS(L'E', L'`', 0x00c8, 0x0000) },
407 { DEADTRANS(L'I', L'`', 0x00cc, 0x0000) },
408 { DEADTRANS(L'O', L'`', 0x00d2, 0x0000) },
409 { DEADTRANS(L'U', L'`', 0x00d9, 0x0000) },
410 { DEADTRANS(L' ', L'`', L'`', 0x0000) },
411
412 { DEADTRANS(L'a', L'^', 0x00e2, 0x0000) },
413 { DEADTRANS(L'e', L'^', 0x00ea, 0x0000) },
414 { DEADTRANS(L'i', L'^', 0x00ee, 0x0000) },
415 { DEADTRANS(L'o', L'^', 0x00f4, 0x0000) },
416 { DEADTRANS(L'u', L'^', 0x00fb, 0x0000) },
417 { DEADTRANS(L'A', L'^', 0x00c2, 0x0000) },
418 { DEADTRANS(L'E', L'^', 0x00ca, 0x0000) },
419 { DEADTRANS(L'I', L'^', 0x00ce, 0x0000) },
420 { DEADTRANS(L'O', L'^', 0x00d4, 0x0000) },
421 { DEADTRANS(L'U', L'^', 0x00db, 0x0000) },
422 { DEADTRANS(L'C', L'^', 0x0108, 0x0000) },
423 { DEADTRANS(L'c', L'^', 0x0109, 0x0000) },
424 { DEADTRANS(L'G', L'^', 0x011c, 0x0000) },
425 { DEADTRANS(L'g', L'^', 0x011d, 0x0000) },
426 { DEADTRANS(L'H', L'^', 0x0124, 0x0000) },
427 { DEADTRANS(L'h', L'^', 0x0125, 0x0000) },
428 { DEADTRANS(L'J', L'^', 0x0134, 0x0000) },
429 { DEADTRANS(L'j', L'^', 0x0135, 0x0000) },
430 { DEADTRANS(L'S', L'^', 0x015c, 0x0000) },
431 { DEADTRANS(L's', L'^', 0x015d, 0x0000) },
432 { DEADTRANS(L'W', L'^', 0x0174, 0x0000) },
433 { DEADTRANS(L'w', L'^', 0x0175, 0x0000) },
434 { DEADTRANS(L'Y', L'^', 0x0176, 0x0000) },
435 { DEADTRANS(L'y', L'^', 0x0177, 0x0000) },
436 { DEADTRANS(L' ', L'^', L'^', 0x0000) },
437
438 { DEADTRANS(L'c', 0x00b8, 0x00e7, 0x0000) },
439 { DEADTRANS(L'g', 0x00b8, 0x0123, 0x0000) },
440 { DEADTRANS(L'k', 0x00b8, 0x0137, 0x0000) },
441 { DEADTRANS(L'l', 0x00b8, 0x013c, 0x0000) },
442 { DEADTRANS(L'n', 0x00b8, 0x0146, 0x0000) },
443 { DEADTRANS(L'r', 0x00b8, 0x0157, 0x0000) },
444 { DEADTRANS(L's', 0x00b8, 0x015f, 0x0000) },
445 { DEADTRANS(L't', 0x00b8, 0x0163, 0x0000) },
446 { DEADTRANS(L'C', 0x00b8, 0x00c7, 0x0000) },
447 { DEADTRANS(L'G', 0x00b8, 0x0122, 0x0000) },
448 { DEADTRANS(L'K', 0x00b8, 0x0136, 0x0000) },
449 { DEADTRANS(L'L', 0x00b8, 0x013b, 0x0000) },
450 { DEADTRANS(L'N', 0x00b8, 0x0145, 0x0000) },
451 { DEADTRANS(L'R', 0x00b8, 0x0156, 0x0000) },
452 { DEADTRANS(L'S', 0x00b8, 0x015e, 0x0000) },
453 { DEADTRANS(L'T', 0x00b8, 0x0162, 0x0000) },
454 { DEADTRANS(L' ', 0x00b8, 0x00b8, 0x0000) },
455
456 { DEADTRANS(L'a', 0x00a8, 0x00e4, 0x0000) },
457 { DEADTRANS(L'e', 0x00a8, 0x00eb, 0x0000) },
458 { DEADTRANS(L'i', 0x00a8, 0x00ef, 0x0000) },
459 { DEADTRANS(L'o', 0x00a8, 0x00f6, 0x0000) },
460 { DEADTRANS(L'u', 0x00a8, 0x00fc, 0x0000) },
461 { DEADTRANS(L'y', 0x00a8, 0x00ff, 0x0000) },
462 { DEADTRANS(L'A', 0x00a8, 0x00c4, 0x0000) },
463 { DEADTRANS(L'E', 0x00a8, 0x00cb, 0x0000) },
464 { DEADTRANS(L'I', 0x00a8, 0x00cf, 0x0000) },
465 { DEADTRANS(L'O', 0x00a8, 0x00d6, 0x0000) },
466 { DEADTRANS(L'U', 0x00a8, 0x00dc, 0x0000) },
467 { DEADTRANS(L'Y', 0x00a8, 0x0178, 0x0000) },
468 { DEADTRANS(L' ', 0x00a8, 0x00a8, 0x0000) },
469
470 { DEADTRANS(L'a', L'~', 0x00e3, 0x0000) },
471 { DEADTRANS(L'i', L'~', 0x0129, 0x0000) },
472 { DEADTRANS(L'n', L'~', 0x00f1, 0x0000) },
473 { DEADTRANS(L'o', L'~', 0x00f5, 0x0000) },
474 { DEADTRANS(L'u', L'~', 0x0169, 0x0000) },
475 { DEADTRANS(L'A', L'~', 0x00c3, 0x0000) },
476 { DEADTRANS(L'I', L'~', 0x0128, 0x0000) },
477 { DEADTRANS(L'N', L'~', 0x00d1, 0x0000) },
478 { DEADTRANS(L'O', L'~', 0x00d5, 0x0000) },
479 { DEADTRANS(L'U', L'~', 0x0168, 0x0000) },
480 { DEADTRANS(L' ', L'~', L'~', 0x0000) },
481
482 { DEADTRANS(L'c', 0x02c7, 0x010d, 0x0000) },
483 { DEADTRANS(L'd', 0x02c7, 0x010f, 0x0000) },
484 { DEADTRANS(L'e', 0x02c7, 0x011b, 0x0000) },
485 { DEADTRANS(L'l', 0x02c7, 0x013e, 0x0000) },
486 { DEADTRANS(L'n', 0x02c7, 0x0148, 0x0000) },
487 { DEADTRANS(L'r', 0x02c7, 0x0159, 0x0000) },
488 { DEADTRANS(L's', 0x02c7, 0x0161, 0x0000) },
489 { DEADTRANS(L't', 0x02c7, 0x0165, 0x0000) },
490 { DEADTRANS(L'z', 0x02c7, 0x017e, 0x0000) },
491 { DEADTRANS(L'C', 0x02c7, 0x010c, 0x0000) },
492 { DEADTRANS(L'D', 0x02c7, 0x010e, 0x0000) },
493 { DEADTRANS(L'E', 0x02c7, 0x011a, 0x0000) },
494 { DEADTRANS(L'L', 0x02c7, 0x013d, 0x0000) },
495 { DEADTRANS(L'N', 0x02c7, 0x0147, 0x0000) },
496 { DEADTRANS(L'R', 0x02c7, 0x0158, 0x0000) },
497 { DEADTRANS(L'S', 0x02c7, 0x0160, 0x0000) },
498 { DEADTRANS(L'T', 0x02c7, 0x0164, 0x0000) },
499 { DEADTRANS(L'Z', 0x02c7, 0x017d, 0x0000) },
500 { DEADTRANS(L' ', 0x02c7, 0x02c7, 0x0000) },
501
502 { DEADTRANS(L'a', 0x02d8, 0x0103, 0x0000) },
503 { DEADTRANS(L'g', 0x02d8, 0x011f, 0x0000) },
504 { DEADTRANS(L'u', 0x02d8, 0x016d, 0x0000) },
505 { DEADTRANS(L'A', 0x02d8, 0x0102, 0x0000) },
506 { DEADTRANS(L'G', 0x02d8, 0x011e, 0x0000) },
507 { DEADTRANS(L'U', 0x02d8, 0x016c, 0x0000) },
508 { DEADTRANS(L' ', 0x02d8, 0x02d8, 0x0000) },
509
510 { DEADTRANS(L'o', 0x02dd, 0x0151, 0x0000) },
511 { DEADTRANS(L'u', 0x02dd, 0x0171, 0x0000) },
512 { DEADTRANS(L'O', 0x02dd, 0x0150, 0x0000) },
513 { DEADTRANS(L'U', 0x02dd, 0x0170, 0x0000) },
514 { DEADTRANS(L' ', 0x02dd, 0x02dd, 0x0000) },
515
516 { DEADTRANS(L'a', 0x02da, 0x00e5, 0x0000) },
517 { DEADTRANS(L'u', 0x02da, 0x016f, 0x0000) },
518 { DEADTRANS(L'A', 0x02da, 0x00c5, 0x0000) },
519 { DEADTRANS(L'U', 0x02da, 0x016e, 0x0000) },
520 { DEADTRANS(L' ', 0x02da, 0x02da, 0x0000) },
521
522 { DEADTRANS(L'c', 0x02d9, 0x010b, 0x0000) },
523 { DEADTRANS(L'e', 0x02d9, 0x0117, 0x0000) },
524 { DEADTRANS(L'g', 0x02d9, 0x0121, 0x0000) },
525 { DEADTRANS(L'z', 0x02d9, 0x0017, 0x0000) },
526 { DEADTRANS(L'C', 0x02d9, 0x010a, 0x0000) },
527 { DEADTRANS(L'E', 0x02d9, 0x0116, 0x0000) },
528 { DEADTRANS(L'G', 0x02d9, 0x0120, 0x0000) },
529 { DEADTRANS(L'I', 0x02d9, 0x0130, 0x0000) },
530 { DEADTRANS(L'Z', 0x02d9, 0x017b, 0x0000) },
531 { DEADTRANS(L' ', 0x02d9, 0x02d9, 0x0000) },
532
533 { DEADTRANS(L'a', 0x00af, 0x0101, 0x0000) },
534 { DEADTRANS(L'e', 0x00af, 0x0113, 0x0000) },
535 { DEADTRANS(L'i', 0x00af, 0x012b, 0x0000) },
536 { DEADTRANS(L'o', 0x00af, 0x014d, 0x0000) },
537 { DEADTRANS(L'u', 0x00af, 0x016b, 0x0000) },
538 { DEADTRANS(L'A', 0x00af, 0x0100, 0x0000) },
539 { DEADTRANS(L'E', 0x00af, 0x0112, 0x0000) },
540 { DEADTRANS(L'I', 0x00af, 0x012a, 0x0000) },
541 { DEADTRANS(L'O', 0x00af, 0x014c, 0x0000) },
542 { DEADTRANS(L'U', 0x00af, 0x016a, 0x0000) },
543 { DEADTRANS(L' ', 0x00af, 0x00af, 0x0000) },
544
545 { DEADTRANS(L'a', 0x02db, 0x0105, 0x0000) },
546 { DEADTRANS(L'e', 0x02db, 0x0119, 0x0000) },
547 { DEADTRANS(L'i', 0x02db, 0x012f, 0x0000) },
548 { DEADTRANS(L'u', 0x02db, 0x0173, 0x0000) },
549 { DEADTRANS(L'A', 0x02db, 0x0104, 0x0000) },
550 { DEADTRANS(L'E', 0x02db, 0x0118, 0x0000) },
551 { DEADTRANS(L'I', 0x02db, 0x012e, 0x0000) },
552 { DEADTRANS(L'U', 0x02db, 0x0172, 0x0000) },
553 { DEADTRANS(L' ', 0x02db, 0x02db, 0x0000) },
554 { 0, 0 }
555};
556
557/* Finally, the master table */
559 /* modifier assignments */
561
562 /* character from vk tables */
564
565 /* diacritical marks */
566 dead_key,
567
568 /* Key names */
571 dead_key_names, /* Dead key names */
572
573 /* scan code to virtual key maps */
578
579 MAKELONG(KLLF_ALTGR, 1), /* Version 1.0 */
580
581 0,
582 0,
583 NULL
584};
585
587 return &keyboard_layout_table;
588}
589
592 PVOID hinstDll,
595{
596 return 1;
597}
598
#define RTL_NUMBER_OF(x)
Definition: RtlRegistry.c:12
DWORD dwReason
Definition: misc.cpp:141
#define NULL
Definition: types.h:112
r reserved
Definition: btrfs.c:3006
#define WCH_DEAD
Definition: kbd.h:114
#define CAPLOK
Definition: kbd.h:118
#define KBDALT
Definition: kbd.h:16
#define WCH_NONE
Definition: kbd.h:113
#define SHFT_INVALID
Definition: kbd.h:19
#define KBDCTRL
Definition: kbd.h:15
#define KBDEXT
Definition: kbd.h:8
#define KLLF_ALTGR
Definition: kbd.h:91
WCHAR * DEADKEY_LPWSTR
Definition: kbd.h:62
#define KBDSHIFT
Definition: kbd.h:14
#define KBDMULTIVK
Definition: kbd.h:9
#define DEADTRANS(ch, accent, comp, flags)
Definition: kbdcan.c:371
ROSDATA DEADKEY dead_key[]
Definition: kbdcan.c:373
#define KNUMS
Definition: kbdcan.c:30
ROSDATA VSC_LPWSTR extended_key_names[]
Definition: kbdcan.c:335
#define KMEXT
Definition: kbdcan.c:31
ROSDATA USHORT scancode_to_vk[]
Definition: kbdcan.c:33
ROSDATA VK_TO_WCHARS1 keypad_numbers[]
Definition: kbdcan.c:254
ROSDATA MODIFIERS modifier_bits
Definition: kbdcan.c:160
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[]
Definition: kbdcan.c:183
ROSDATA VSC_LPWSTR key_names[]
Definition: kbdcan.c:280
INT WINAPI DllMain(PVOID hinstDll, ULONG dwReason, PVOID reserved)
Definition: kbdcan.c:591
#define vk_master(n, x)
Definition: kbdcan.c:268
ROSDATA VSC_VK extcode0_to_vk[]
Definition: kbdcan.c:105
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[]
Definition: kbdcan.c:270
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[]
Definition: kbdcan.c:177
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[]
Definition: kbdcan.c:223
#define ROSDATA
Definition: kbdcan.c:24
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[]
Definition: kbdcan.c:166
ROSDATA DEADKEY_LPWSTR dead_key_names[]
Definition: kbdcan.c:362
ROSDATA VK_TO_WCHARS6 key_to_chars_6mod[]
Definition: kbdcan.c:245
#define VK_EMPTY
Definition: kbdcan.c:28
ROSDATA VK_TO_BIT modifier_keys[]
Definition: kbdcan.c:152
ROSDATA VSC_VK extcode1_to_vk[]
Definition: kbdcan.c:147
ROSDATA KBDTABLES keyboard_layout_table
Definition: kbdcan.c:558
PKBDTABLES WINAPI KbdLayerDescriptor()
Definition: kbdjpn.c:390
#define L(x)
Definition: ntvdm.h:50
unsigned short USHORT
Definition: pedump.c:61
Definition: kbd.h:56
Definition: kbd.h:95
Definition: kbd.h:26
Definition: kbd.h:21
Definition: kbd.h:71
int32_t INT
Definition: typedefs.h:58
#define MAKELONG(a, b)
Definition: typedefs.h:249
uint32_t ULONG
Definition: typedefs.h:59
#define WINAPI
Definition: msvc.h:6
#define VK_OEM_AUTO
Definition: winuser.h:2344
#define VK_CLEAR
Definition: winuser.h:2203
#define VK_OEM_5
Definition: winuser.h:2321
#define VK_NUMPAD3
Definition: winuser.h:2245
#define VK_SNAPSHOT
Definition: winuser.h:2234
#define VK_F12
Definition: winuser.h:2269
#define VK_TAB
Definition: winuser.h:2202
#define VK_F9
Definition: winuser.h:2266
#define VK_APPS
Definition: winuser.h:2240
#define VK_MULTIPLY
Definition: winuser.h:2252
#define VK_ZOOM
Definition: winuser.h:2352
#define VK_NUMPAD1
Definition: winuser.h:2243
#define VK_F10
Definition: winuser.h:2267
#define VK_OEM_7
Definition: winuser.h:2323
#define VK_F15
Definition: winuser.h:2272
#define VK_NUMPAD2
Definition: winuser.h:2244
#define VK_OEM_JUMP
Definition: winuser.h:2335
#define VK_SPACE
Definition: winuser.h:2222
#define VK_CAPITAL
Definition: winuser.h:2209
#define VK_OEM_4
Definition: winuser.h:2320
#define VK_NUMPAD4
Definition: winuser.h:2246
#define VK_SCROLL
Definition: winuser.h:2283
#define VK_F23
Definition: winuser.h:2280
#define VK_CONTROL
Definition: winuser.h:2206
#define VK_EREOF
Definition: winuser.h:2350
#define VK_OEM_PA1
Definition: winuser.h:2336
#define VK_F22
Definition: winuser.h:2279
#define VK_RSHIFT
Definition: winuser.h:2286
#define VK_CANCEL
Definition: winuser.h:2195
#define VK_UP
Definition: winuser.h:2228
#define VK_F18
Definition: winuser.h:2275
#define VK_F16
Definition: winuser.h:2273
#define VK_OEM_FINISH
Definition: winuser.h:2342
#define VK_LSHIFT
Definition: winuser.h:2285
#define VK_LCONTROL
Definition: winuser.h:2287
#define VK_NUMPAD0
Definition: winuser.h:2242
#define VK_F1
Definition: winuser.h:2258
#define VK_F6
Definition: winuser.h:2263
#define VK_F24
Definition: winuser.h:2281
#define VK_PAUSE
Definition: winuser.h:2208
#define VK_OEM_8
Definition: winuser.h:2324
#define VK_OEM_PA3
Definition: winuser.h:2338
#define VK_NUMPAD6
Definition: winuser.h:2248
#define VK_F21
Definition: winuser.h:2278
#define VK_NEXT
Definition: winuser.h:2224
#define VK_RCONTROL
Definition: winuser.h:2288
#define VK_F14
Definition: winuser.h:2271
#define VK_F20
Definition: winuser.h:2277
#define VK_RETURN
Definition: winuser.h:2204
#define VK_OEM_6
Definition: winuser.h:2322
#define VK_SLEEP
Definition: winuser.h:2241
#define VK_OEM_BACKTAB
Definition: winuser.h:2346
#define VK_F5
Definition: winuser.h:2262
#define VK_F11
Definition: winuser.h:2268
#define VK_F8
Definition: winuser.h:2265
#define VK_RMENU
Definition: winuser.h:2290
#define VK_NUMPAD9
Definition: winuser.h:2251
#define VK_END
Definition: winuser.h:2225
#define VK_HOME
Definition: winuser.h:2226
#define VK_ADD
Definition: winuser.h:2253
#define VK_OEM_RESET
Definition: winuser.h:2334
#define VK_OEM_2
Definition: winuser.h:2318
#define VK_BACK
Definition: winuser.h:2201
#define VK_F3
Definition: winuser.h:2260
#define VK_LWIN
Definition: winuser.h:2238
#define VK_F4
Definition: winuser.h:2261
#define VK_NUMPAD5
Definition: winuser.h:2247
#define VK_LEFT
Definition: winuser.h:2227
#define VK_F17
Definition: winuser.h:2274
#define VK_NUMPAD7
Definition: winuser.h:2249
#define VK_RIGHT
Definition: winuser.h:2229
#define VK_OEM_1
Definition: winuser.h:2311
#define VK_DOWN
Definition: winuser.h:2230
#define VK_NUMLOCK
Definition: winuser.h:2282
#define VK_SHIFT
Definition: winuser.h:2205
#define VK_PRIOR
Definition: winuser.h:2223
#define VK_F19
Definition: winuser.h:2276
#define VK_DELETE
Definition: winuser.h:2236
#define VK_OEM_WSCTRL
Definition: winuser.h:2339
#define VK_DIVIDE
Definition: winuser.h:2257
#define VK_NUMPAD8
Definition: winuser.h:2250
#define VK_F13
Definition: winuser.h:2270
#define VK_DECIMAL
Definition: winuser.h:2256
#define VK_ESCAPE
Definition: winuser.h:2217
#define VK_OEM_3
Definition: winuser.h:2319
#define VK_HELP
Definition: winuser.h:2237
#define VK_F7
Definition: winuser.h:2264
#define VK_INSERT
Definition: winuser.h:2235
#define VK_RWIN
Definition: winuser.h:2239
#define VK_SUBTRACT
Definition: winuser.h:2255
#define VK_LMENU
Definition: winuser.h:2289
#define VK_MENU
Definition: winuser.h:2207
#define VK_F2
Definition: winuser.h:2259