Mercurial > sdl-ios-xcode
diff src/video/directfb/SDL_DirectFB_events.c @ 5083:25d4feb7c127
Renamed SDL_keysym to SDL_KeySym
Renamed SDL_scancode to SDL_ScanCode
Added #defines to SDL_compat.h
author | krogoway |
---|---|
date | Mon, 24 Jan 2011 13:47:35 -0600 |
parents | b196d2758026 |
children | dc0dfdd58f27 |
line wrap: on
line diff
--- a/src/video/directfb/SDL_DirectFB_events.c Sun Jan 23 21:55:04 2011 -0800 +++ b/src/video/directfb/SDL_DirectFB_events.c Mon Jan 24 13:47:35 2011 -0600 @@ -56,11 +56,11 @@ static SDLKey oskeymap[256]; -static SDL_keysym *DirectFB_TranslateKey(_THIS, DFBWindowEvent * evt, - SDL_keysym * keysym); -static SDL_keysym *DirectFB_TranslateKeyInputEvent(_THIS, int index, +static SDL_KeySym *DirectFB_TranslateKey(_THIS, DFBWindowEvent * evt, + SDL_KeySym * keysym); +static SDL_KeySym *DirectFB_TranslateKeyInputEvent(_THIS, int index, DFBInputEvent * evt, - SDL_keysym * keysym); + SDL_KeySym * keysym); static void DirectFB_InitOSKeymap(_THIS, SDLKey * keypmap, int numkeys); static int DirectFB_TranslateButton(DFBInputDeviceButtonIdentifier button); @@ -168,7 +168,7 @@ DFBWindowEvent * evt) { SDL_DFB_DEVICEDATA(_this); - SDL_keysym keysym; + SDL_KeySym keysym; char text[5]; if (evt->clazz == DFEC_WINDOW) { @@ -300,7 +300,7 @@ ProcessInputEvent(_THIS, DFBInputEvent * ievt) { SDL_DFB_DEVICEDATA(_this); - SDL_keysym keysym; + SDL_KeySym keysym; int kbd_idx; char text[5]; @@ -549,8 +549,8 @@ } -static SDL_keysym * -DirectFB_TranslateKey(_THIS, DFBWindowEvent * evt, SDL_keysym * keysym) +static SDL_KeySym * +DirectFB_TranslateKey(_THIS, DFBWindowEvent * evt, SDL_KeySym * keysym) { SDL_DFB_DEVICEDATA(_this); @@ -577,9 +577,9 @@ return keysym; } -static SDL_keysym * +static SDL_KeySym * DirectFB_TranslateKeyInputEvent(_THIS, int index, DFBInputEvent * evt, - SDL_keysym * keysym) + SDL_KeySym * keysym) { SDL_DFB_DEVICEDATA(_this); @@ -719,7 +719,7 @@ while (devdata->eventbuffer->GetEvent(devdata->eventbuffer, DFB_EVENT(&evt)) == DFB_OK) { - SDL_keysym keysym; + SDL_KeySym keysym; DFBInputDeviceModifierMask mod; if (evt.clazz = DFEC_INPUT) {