zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
jumphack.c
Go to the documentation of this file.
1 /*
2  * jumphack.c
3  * SDLiPhoneOS
4  *
5  */
6 
7 #include "jumphack.h"
8 
9 /* see SDL_uikitevents.m for more info */
10 
11 /* stores the information we need to jump back */
12 jmp_buf env;
13 
14 /* returns the jump environment for setting / getting purposes */
15 jmp_buf *
16 jump_env(void)
17 {
18  return &env;
19 }
jmp_buf * jump_env(void)
Definition: jumphack.c:16
jmp_buf env
Definition: jumphack.c:12