~vcs-imports/libsdl/trunk

« back to all changes in this revision

Viewing changes to src/video/uikit/SDL_uikitkeyboard.h

  • Committer: slouken
  • Date: 2010-01-21 06:21:52 UTC
  • Revision ID: svn-v4:c70aab31-4412-0410-b14c-859654838e24:trunk/SDL:5525
Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef sdl_uikitkeyboard_h
24
24
#define sdl_uikitkeyboard_h
25
25
 
26
 
extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_WindowID windowID);
27
 
extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_WindowID windowID);
28
 
extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_WindowID
29
 
                                                           windowID);
30
 
extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_WindowID windowID);
 
26
extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_Window * window);
 
27
extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_Window * window);
 
28
extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_Window * window);
 
29
extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_Window * window);
31
30
 
32
31
#endif