Mercurial > sdl-ios-xcode
annotate src/video/uikit/jumphack.h @ 2458:b32df598e599 gsoc2008_iphone
updated project for new file paths
author | Holmes Futrell <hfutrell@umail.ucsb.edu> |
---|---|
date | Sat, 16 Aug 2008 00:26:46 +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 |