comparison src/video/directfb/SDL_DirectFB_video.h @ 5223:572a73d71b5f

Sheena pointed out that "scancode" and "keysym" are single words and shouldn't be camel-cased.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 07 Feb 2011 09:37:11 -0800
parents 164f20ba08eb
children b530ef003506
comparison
equal deleted inserted replaced
5222:9c0593fa27d6 5223:572a73d71b5f
140 #define DFB_MAX_SCREENS 10 140 #define DFB_MAX_SCREENS 10
141 141
142 typedef struct _DFB_KeyboardData DFB_KeyboardData; 142 typedef struct _DFB_KeyboardData DFB_KeyboardData;
143 struct _DFB_KeyboardData 143 struct _DFB_KeyboardData
144 { 144 {
145 const SDL_ScanCode *map; /* keyboard scancode map */ 145 const SDL_Scancode *map; /* keyboard scancode map */
146 int map_size; /* size of map */ 146 int map_size; /* size of map */
147 int map_adjust; /* index adjust */ 147 int map_adjust; /* index adjust */
148 int is_generic; /* generic keyboard */ 148 int is_generic; /* generic keyboard */
149 int id; 149 int id;
150 }; 150 };