annotate src/events/scancodes_win32.h @ 2825:620a91b6d263

Date: Tue, 02 Dec 2008 23:38:26 +0100 From: Couriersud Subject: Re: SDL: Keyboard layout unknown I have attached a diff which will add an additional keyboard layout to the x11 driver. The issue arose, when I moved to ubuntu intrepid. I was only able to map the keys available on my keyboard. The differences to the existing keyboard was the mapping of HOME,UP,DOWN and some other keys. Now only one issue remains. Dead keys (e.g. ^, ` ') on european keyboards do not generate a "scancode" event. Just a text event when the key is composed (e.g. ?? ?? ??).
author Sam Lantinga <slouken@libsdl.org>
date Wed, 03 Dec 2008 04:32:24 +0000
parents 012ec5192dfa
children 99210400e8b9
rev   line source
2308
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1 /*
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 SDL - Simple DirectMedia Layer
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3 Copyright (C) 1997-2006 Sam Lantinga
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 This library is free software; you can redistribute it and/or
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
6 modify it under the terms of the GNU Lesser General Public
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7 License as published by the Free Software Foundation; either
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 This library is distributed in the hope that it will be useful,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
13 Lesser General Public License for more details.
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
14
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
15 You should have received a copy of the GNU Lesser General Public
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
16 License along with this library; if not, write to the Free Software
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 Sam Lantinga
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
20 slouken@libsdl.org
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22 #include "../../include/SDL_scancode.h"
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
23
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
24 /* Win32 virtual key code to SDL scancode mapping table
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
25 Sources:
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
26 - msdn.microsoft.com
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
27 */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
28 /* *INDENT-OFF* */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
29 static SDL_scancode win32_scancode_table[] = {
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
30 /* 0, 0x00 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
31 /* 1, 0x01 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
32 /* 2, 0x02 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
33 /* 3, 0x03 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
34 /* 4, 0x04 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
35 /* 5, 0x05 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
36 /* 6, 0x06 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
37 /* 7, 0x07 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
38 /* 8, 0x08 */ SDL_SCANCODE_BACKSPACE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
39 /* 9, 0x09 */ SDL_SCANCODE_TAB,
2313
012ec5192dfa Added support for keypad enter
Sam Lantinga <slouken@libsdl.org>
parents: 2308
diff changeset
40 /* 10, 0x0a */ SDL_SCANCODE_KP_ENTER, /* Not a VKEY, SDL specific */
2308
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
41 /* 11, 0x0b */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
42 /* 12, 0x0c */ SDL_SCANCODE_CLEAR,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
43 /* 13, 0x0d */ SDL_SCANCODE_RETURN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
44 /* 14, 0x0e */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
45 /* 15, 0x0f */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
46 /* 16, 0x10 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
47 /* 17, 0x11 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
48 /* 18, 0x12 */ SDL_SCANCODE_APPLICATION,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
49 /* 19, 0x13 */ SDL_SCANCODE_PAUSE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
50 /* 20, 0x14 */ SDL_SCANCODE_CAPSLOCK,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
51 /* 21, 0x15 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
52 /* 22, 0x16 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
53 /* 23, 0x17 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
54 /* 24, 0x18 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
55 /* 25, 0x19 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
56 /* 26, 0x1a */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
57 /* 27, 0x1b */ SDL_SCANCODE_ESCAPE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
58 /* 28, 0x1c */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
59 /* 29, 0x1d */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
60 /* 30, 0x1e */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
61 /* 31, 0x1f */ SDL_SCANCODE_MODE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
62 /* 32, 0x20 */ SDL_SCANCODE_SPACE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
63 /* 33, 0x21 */ SDL_SCANCODE_PAGEUP,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
64 /* 34, 0x22 */ SDL_SCANCODE_PAGEDOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
65 /* 35, 0x23 */ SDL_SCANCODE_END,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
66 /* 36, 0x24 */ SDL_SCANCODE_HOME,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
67 /* 37, 0x25 */ SDL_SCANCODE_LEFT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
68 /* 38, 0x26 */ SDL_SCANCODE_UP,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
69 /* 39, 0x27 */ SDL_SCANCODE_RIGHT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
70 /* 40, 0x28 */ SDL_SCANCODE_DOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
71 /* 41, 0x29 */ SDL_SCANCODE_SELECT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
72 /* 42, 0x2a */ SDL_SCANCODE_UNKNOWN, /* VK_PRINT */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
73 /* 43, 0x2b */ SDL_SCANCODE_EXECUTE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
74 /* 44, 0x2c */ SDL_SCANCODE_PRINTSCREEN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
75 /* 45, 0x2d */ SDL_SCANCODE_INSERT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
76 /* 46, 0x2e */ SDL_SCANCODE_DELETE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
77 /* 47, 0x2f */ SDL_SCANCODE_HELP,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
78 /* 48, 0x30 */ SDL_SCANCODE_0,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
79 /* 49, 0x31 */ SDL_SCANCODE_1,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
80 /* 50, 0x32 */ SDL_SCANCODE_2,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
81 /* 51, 0x33 */ SDL_SCANCODE_3,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
82 /* 52, 0x34 */ SDL_SCANCODE_4,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
83 /* 53, 0x35 */ SDL_SCANCODE_5,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
84 /* 54, 0x36 */ SDL_SCANCODE_6,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
85 /* 55, 0x37 */ SDL_SCANCODE_7,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
86 /* 56, 0x38 */ SDL_SCANCODE_8,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
87 /* 57, 0x39 */ SDL_SCANCODE_9,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
88 /* 58, 0x3a */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
89 /* 59, 0x3b */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
90 /* 60, 0x3c */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
91 /* 61, 0x3d */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
92 /* 62, 0x3e */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
93 /* 63, 0x3f */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
94 /* 64, 0x40 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
95 /* 65, 0x41 */ SDL_SCANCODE_A,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
96 /* 66, 0x42 */ SDL_SCANCODE_B,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
97 /* 67, 0x43 */ SDL_SCANCODE_C,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
98 /* 68, 0x44 */ SDL_SCANCODE_D,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
99 /* 69, 0x45 */ SDL_SCANCODE_E,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
100 /* 70, 0x46 */ SDL_SCANCODE_F,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
101 /* 71, 0x47 */ SDL_SCANCODE_G,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
102 /* 72, 0x48 */ SDL_SCANCODE_H,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
103 /* 73, 0x49 */ SDL_SCANCODE_I,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
104 /* 74, 0x4a */ SDL_SCANCODE_J,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
105 /* 75, 0x4b */ SDL_SCANCODE_K,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
106 /* 76, 0x4c */ SDL_SCANCODE_L,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
107 /* 77, 0x4d */ SDL_SCANCODE_M,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
108 /* 78, 0x4e */ SDL_SCANCODE_N,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
109 /* 79, 0x4f */ SDL_SCANCODE_O,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
110 /* 80, 0x50 */ SDL_SCANCODE_P,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
111 /* 81, 0x51 */ SDL_SCANCODE_Q,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
112 /* 82, 0x52 */ SDL_SCANCODE_R,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
113 /* 83, 0x53 */ SDL_SCANCODE_S,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
114 /* 84, 0x54 */ SDL_SCANCODE_T,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
115 /* 85, 0x55 */ SDL_SCANCODE_U,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
116 /* 86, 0x56 */ SDL_SCANCODE_V,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
117 /* 87, 0x57 */ SDL_SCANCODE_W,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
118 /* 88, 0x58 */ SDL_SCANCODE_X,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
119 /* 89, 0x59 */ SDL_SCANCODE_Y,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
120 /* 90, 0x5a */ SDL_SCANCODE_Z,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
121 /* 91, 0x5b */ SDL_SCANCODE_LGUI,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
122 /* 92, 0x5c */ SDL_SCANCODE_RGUI,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
123 /* 93, 0x5d */ SDL_SCANCODE_APPLICATION,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
124 /* 94, 0x5e */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
125 /* 95, 0x5f */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
126 /* 96, 0x60 */ SDL_SCANCODE_KP_0,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
127 /* 97, 0x61 */ SDL_SCANCODE_KP_1,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
128 /* 98, 0x62 */ SDL_SCANCODE_KP_2,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
129 /* 99, 0x63 */ SDL_SCANCODE_KP_3,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
130 /* 100, 0x64 */ SDL_SCANCODE_KP_4,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
131 /* 101, 0x65 */ SDL_SCANCODE_KP_5,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
132 /* 102, 0x66 */ SDL_SCANCODE_KP_6,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
133 /* 103, 0x67 */ SDL_SCANCODE_KP_7,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
134 /* 104, 0x68 */ SDL_SCANCODE_KP_8,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
135 /* 105, 0x69 */ SDL_SCANCODE_KP_9,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
136 /* 106, 0x6a */ SDL_SCANCODE_KP_MULTIPLY,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
137 /* 107, 0x6b */ SDL_SCANCODE_KP_PLUS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
138 /* 108, 0x6c */ SDL_SCANCODE_SEPARATOR,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
139 /* 109, 0x6d */ SDL_SCANCODE_KP_MINUS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
140 /* 110, 0x6e */ SDL_SCANCODE_KP_DECIMAL,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
141 /* 111, 0x6f */ SDL_SCANCODE_KP_DIVIDE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
142 /* 112, 0x70 */ SDL_SCANCODE_F1,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
143 /* 113, 0x71 */ SDL_SCANCODE_F2,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
144 /* 114, 0x72 */ SDL_SCANCODE_F3,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
145 /* 115, 0x73 */ SDL_SCANCODE_F4,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
146 /* 116, 0x74 */ SDL_SCANCODE_F5,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
147 /* 117, 0x75 */ SDL_SCANCODE_F6,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
148 /* 118, 0x76 */ SDL_SCANCODE_F7,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
149 /* 119, 0x77 */ SDL_SCANCODE_F8,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
150 /* 120, 0x78 */ SDL_SCANCODE_F9,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
151 /* 121, 0x79 */ SDL_SCANCODE_F10,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
152 /* 122, 0x7a */ SDL_SCANCODE_F11,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
153 /* 123, 0x7b */ SDL_SCANCODE_F12,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
154 /* 124, 0x7c */ SDL_SCANCODE_F13,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
155 /* 125, 0x7d */ SDL_SCANCODE_F14,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
156 /* 126, 0x7e */ SDL_SCANCODE_F15,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
157 /* 127, 0x7f */ SDL_SCANCODE_F16,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
158 /* 128, 0x80 */ SDL_SCANCODE_F17, /* or SDL_SCANCODE_AUDIONEXT */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
159 /* 129, 0x81 */ SDL_SCANCODE_F18, /* or SDL_SCANCODE_AUDIOPREV */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
160 /* 130, 0x82 */ SDL_SCANCODE_F19, /* or SDL_SCANCODE_AUDIOSTOP */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
161 /* 131, 0x83 */ SDL_SCANCODE_F20, /* or SDL_SCANCODE_AUDIOPLAY */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
162 /* 132, 0x84 */ SDL_SCANCODE_F21, /* or SDL_SCANCODE_MAIL */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
163 /* 133, 0x85 */ SDL_SCANCODE_F22, /* or SDL_SCANCODE_MEDIASELECT */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
164 /* 134, 0x86 */ SDL_SCANCODE_F23, /* or SDL_SCANCODE_WWW */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
165 /* 135, 0x87 */ SDL_SCANCODE_F24, /* or SDL_SCANCODE_CALCULATOR */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
166 /* 136, 0x88 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
167 /* 137, 0x89 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
168 /* 138, 0x8a */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
169 /* 139, 0x8b */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
170 /* 140, 0x8c */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
171 /* 141, 0x8d */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
172 /* 142, 0x8e */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
173 /* 143, 0x8f */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
174 /* 144, 0x90 */ SDL_SCANCODE_NUMLOCKCLEAR,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
175 /* 145, 0x91 */ SDL_SCANCODE_SCROLLLOCK,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
176 /* 146, 0x92 */ SDL_SCANCODE_KP_EQUALS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
177 /* 147, 0x93 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
178 /* 148, 0x94 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
179 /* 149, 0x95 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
180 /* 150, 0x96 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
181 /* 151, 0x97 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
182 /* 152, 0x98 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
183 /* 153, 0x99 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
184 /* 154, 0x9a */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
185 /* 155, 0x9b */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
186 /* 156, 0x9c */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
187 /* 157, 0x9d */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
188 /* 158, 0x9e */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
189 /* 159, 0x9f */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
190 /* 160, 0xa0 */ SDL_SCANCODE_LSHIFT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
191 /* 161, 0xa1 */ SDL_SCANCODE_RSHIFT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
192 /* 162, 0xa2 */ SDL_SCANCODE_LCTRL,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
193 /* 163, 0xa3 */ SDL_SCANCODE_RCTRL,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
194 /* 164, 0xa4 */ SDL_SCANCODE_LALT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
195 /* 165, 0xa5 */ SDL_SCANCODE_RALT,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
196 /* 166, 0xa6 */ SDL_SCANCODE_AC_BACK,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
197 /* 167, 0xa7 */ SDL_SCANCODE_AC_FORWARD,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
198 /* 168, 0xa8 */ SDL_SCANCODE_AC_REFRESH,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
199 /* 169, 0xa9 */ SDL_SCANCODE_AC_STOP,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
200 /* 170, 0xaa */ SDL_SCANCODE_AC_SEARCH,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
201 /* 171, 0xab */ SDL_SCANCODE_AC_BOOKMARKS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
202 /* 172, 0xac */ SDL_SCANCODE_AC_HOME,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
203 /* 173, 0xad */ SDL_SCANCODE_AUDIOMUTE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
204 /* 174, 0xae */ SDL_SCANCODE_VOLUMEDOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
205 /* 175, 0xaf */ SDL_SCANCODE_VOLUMEUP,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
206 /* 176, 0xb0 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
207 /* 177, 0xb1 */ SDL_SCANCODE_KP_000,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
208 /* 178, 0xb2 */ SDL_SCANCODE_KP_EQUALS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
209 /* 179, 0xb3 */ SDL_SCANCODE_KP_00,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
210 /* 180, 0xb4 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
211 /* 181, 0xb5 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
212 /* 182, 0xb6 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
213 /* 183, 0xb7 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
214 /* 184, 0xb8 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
215 /* 185, 0xb9 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
216 /* 186, 0xba */ SDL_SCANCODE_SEMICOLON,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
217 /* 187, 0xbb */ SDL_SCANCODE_EQUALS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
218 /* 188, 0xbc */ SDL_SCANCODE_COMMA,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
219 /* 189, 0xbd */ SDL_SCANCODE_MINUS,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
220 /* 190, 0xbe */ SDL_SCANCODE_PERIOD,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
221 /* 191, 0xbf */ SDL_SCANCODE_SLASH,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
222 /* 192, 0xc0 */ SDL_SCANCODE_GRAVE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
223 /* 193, 0xc1 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
224 /* 194, 0xc2 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
225 /* 195, 0xc3 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
226 /* 196, 0xc4 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
227 /* 197, 0xc5 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
228 /* 198, 0xc6 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
229 /* 199, 0xc7 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
230 /* 200, 0xc8 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
231 /* 201, 0xc9 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
232 /* 202, 0xca */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
233 /* 203, 0xcb */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
234 /* 204, 0xcc */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
235 /* 205, 0xcd */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
236 /* 206, 0xce */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
237 /* 207, 0xcf */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
238 /* 208, 0xd0 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
239 /* 209, 0xd1 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
240 /* 210, 0xd2 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
241 /* 211, 0xd3 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
242 /* 212, 0xd4 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
243 /* 213, 0xd5 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
244 /* 214, 0xd6 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
245 /* 215, 0xd7 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
246 /* 216, 0xd8 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
247 /* 217, 0xd9 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
248 /* 218, 0xda */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
249 /* 219, 0xdb */ SDL_SCANCODE_LEFTBRACKET,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
250 /* 220, 0xdc */ SDL_SCANCODE_BACKSLASH,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
251 /* 221, 0xdd */ SDL_SCANCODE_RIGHTBRACKET,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
252 /* 222, 0xde */ SDL_SCANCODE_APOSTROPHE,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
253 /* 223, 0xdf */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
254 /* 224, 0xe0 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
255 /* 225, 0xe1 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
256 /* 226, 0xe2 */ SDL_SCANCODE_NONUSBACKSLASH,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
257 /* 227, 0xe3 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
258 /* 228, 0xe4 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
259 /* 229, 0xe5 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
260 /* 230, 0xe6 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
261 /* 231, 0xe7 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
262 /* 232, 0xe8 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
263 /* 233, 0xe9 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
264 /* 234, 0xea */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
265 /* 235, 0xeb */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
266 /* 236, 0xec */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
267 /* 237, 0xed */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
268 /* 238, 0xee */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
269 /* 239, 0xef */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
270 /* 240, 0xf0 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
271 /* 241, 0xf1 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
272 /* 242, 0xf2 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
273 /* 243, 0xf3 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
274 /* 244, 0xf4 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
275 /* 245, 0xf5 */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
276 /* 246, 0xf6 */ SDL_SCANCODE_SYSREQ,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
277 /* 247, 0xf7 */ SDL_SCANCODE_CRSEL,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
278 /* 248, 0xf8 */ SDL_SCANCODE_EXSEL,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
279 /* 249, 0xf9 */ SDL_SCANCODE_UNKNOWN, /* VK_EREOF */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
280 /* 250, 0xfa */ SDL_SCANCODE_UNKNOWN, /* VK_PLAY */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
281 /* 251, 0xfb */ SDL_SCANCODE_UNKNOWN, /* VK_ZOOM */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
282 /* 252, 0xfc */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
283 /* 253, 0xfd */ SDL_SCANCODE_UNKNOWN, /* VK_PA1 */
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
284 /* 254, 0xfe */ SDL_SCANCODE_CLEAR,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
285 /* 255, 0xff */ SDL_SCANCODE_UNKNOWN,
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
286 };
514f7c1651fc Untested Win32 keyboard scancode code.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
287 /* *INDENT-ON* */