annotate src/video/uikit/SDL_uikitkeyboard.h @ 2443:febfb349b467 gsoc2008_iphone

Header files that users of the library can include for additional iPhone keyboard functions.
author Holmes Futrell <hfutrell@umail.ucsb.edu>
date Fri, 15 Aug 2008 23:53:04 +0000
parents
children
rev   line source
2443
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
1 /*
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
2 SDL - Simple DirectMedia Layer
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
3 Copyright (C) 1997-2006 Sam Lantinga
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
4
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
5 This library is free software; you can redistribute it and/or
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
6 modify it under the terms of the GNU Lesser General Public
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
7 License as published by the Free Software Foundation; either
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
9
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
10 This library is distributed in the hope that it will be useful,
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
13 Lesser General Public License for more details.
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
14
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
15 You should have received a copy of the GNU Lesser General Public
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
16 License along with this library; if not, write to the Free Software
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
18
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
19 Sam Lantinga
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
20 slouken@libsdl.org
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
21 */
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
22
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
23 #ifndef sdl_uikitkeyboard_h
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
24 #define sdl_uikitkeyboard_h
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
25
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
26 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_WindowID windowID);
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
27 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_WindowID windowID);
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
28 extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_WindowID windowID);
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
29 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_WindowID windowID);
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
30
febfb349b467 Header files that users of the library can include for additional iPhone keyboard functions.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
31 #endif