1 /*
2     SDL - Simple DirectMedia Layer
3     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
4 
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9 
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14 
15     You should have received a copy of the GNU Library General Public
16     License along with this library; if not, write to the Free
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 
19     Sam Lantinga
20     slouken@libsdl.org
21 */
22 
23 #ifdef SAVE_RCSID
24 static char rcsid = "@(#) $Id: SDL_vkeys.h,v 1.2 2006/02/09 18:31:46 fzago Exp $";
25 #endif
26 
27 #ifndef VK_0
28 #define VK_0	'0'
29 #define VK_1	'1'
30 #define VK_2	'2'
31 #define VK_3	'3'
32 #define VK_4	'4'
33 #define VK_5	'5'
34 #define VK_6	'6'
35 #define VK_7	'7'
36 #define VK_8	'8'
37 #define VK_9	'9'
38 #define VK_A	'A'
39 #define VK_B	'B'
40 #define VK_C	'C'
41 #define VK_D	'D'
42 #define VK_E	'E'
43 #define VK_F	'F'
44 #define VK_G	'G'
45 #define VK_H	'H'
46 #define VK_I	'I'
47 #define VK_J	'J'
48 #define VK_K	'K'
49 #define VK_L	'L'
50 #define VK_M	'M'
51 #define VK_N	'N'
52 #define VK_O	'O'
53 #define VK_P	'P'
54 #define VK_Q	'Q'
55 #define VK_R	'R'
56 #define VK_S	'S'
57 #define VK_T	'T'
58 #define VK_U	'U'
59 #define VK_V	'V'
60 #define VK_W	'W'
61 #define VK_X	'X'
62 #define VK_Y	'Y'
63 #define VK_Z	'Z'
64 #endif /* VK_0 */
65 
66 /* These keys haven't been defined, but were experimentally determined */
67 #define VK_SEMICOLON	0xBA
68 #define VK_EQUALS	0xBB
69 #define VK_COMMA	0xBC
70 #define VK_MINUS	0xBD
71 #define VK_PERIOD	0xBE
72 #define VK_SLASH	0xBF
73 #define VK_GRAVE	0xC0
74 #define VK_LBRACKET	0xDB
75 #define VK_BACKSLASH	0xDC
76 #define VK_RBRACKET	0xDD
77 #define VK_APOSTROPHE	0xDE
78 #define VK_BACKTICK	0xDF
79