annotate src/video/uikit/jumphack.h @ 2450:96124abbcede gsoc2008_iphone

Added comments, view now deletes keyboard upon dealloc, function declarations for iPhone keyboard additions now moved to SDL_uikitkeyboard.h.
author Holmes Futrell <hfutrell@umail.ucsb.edu>
date Sat, 16 Aug 2008 00:16:32 +0000
parents 69ca51fd121d
children
rev   line source
2440
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
1 /*
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
2 * jumphack.h
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
3 * SDLiPhoneOS
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
4 *
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
5 */
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
6
2446
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
7 #ifndef _jumphack_h
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
8 #define _jumphack_h
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
9
2440
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
10 #include "setjmp.h"
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
11
2446
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
12 /* see SDL_uikitevents.m for more info */
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
13
2440
0a0205afed91 Renamed jump.c and jump.h to jumphack.c and jumphack.h ... why? Because they are undesirable hacks used to allow an SDL programmer to execute his/her own code upon program exit.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff changeset
14 extern jmp_buf* jump_env();
2446
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
15
69ca51fd121d Cleaned up, updated header include path
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents: 2440
diff changeset
16 #endif