diff include/SDL_keyboard.h @ 1674:7688a73b25b1 SDL-1.3

Finishing up keyboard code revamp, at least for now...
author Sam Lantinga <slouken@libsdl.org>
date Sun, 11 Jun 2006 05:27:10 +0000
parents 624e1412fbba
children 8d7fecceb9ef
line wrap: on
line diff
--- a/include/SDL_keyboard.h	Sat Jun 10 09:11:59 2006 +0000
+++ b/include/SDL_keyboard.h	Sun Jun 11 05:27:10 2006 +0000
@@ -49,8 +49,9 @@
 typedef struct SDL_keysym
 {
     Uint8 scancode;             /**< keyboard specific scancode */
-    SDLKey sym;                 /**< SDL virtual keysym */
-    SDLMod mod;                 /**< current key modifiers */
+    Uint8 padding[3];           /**< alignment padding */
+    Uint16 sym;                 /**< SDL virtual keysym */
+    Uint16 mod;                 /**< current key modifiers */
 } SDL_keysym;
 
 /* Function prototypes */