Mercurial > sdl-ios-xcode
comparison src/video/uikit/SDL_uikitkeyboard.h @ 3685:64ce267332c6
Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 21 Jan 2010 06:21:52 +0000 |
parents | 99210400e8b9 |
children | f7b03b6838cb |
comparison
equal
deleted
inserted
replaced
3684:cc564f08884f | 3685:64ce267332c6 |
---|---|
21 */ | 21 */ |
22 | 22 |
23 #ifndef sdl_uikitkeyboard_h | 23 #ifndef sdl_uikitkeyboard_h |
24 #define sdl_uikitkeyboard_h | 24 #define sdl_uikitkeyboard_h |
25 | 25 |
26 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_WindowID windowID); | 26 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_Window * window); |
27 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_WindowID windowID); | 27 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_Window * window); |
28 extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_WindowID | 28 extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_Window * window); |
29 windowID); | 29 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_Window * window); |
30 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_WindowID windowID); | |
31 | 30 |
32 #endif | 31 #endif |