Mercurial > sdl-ios-xcode
view src/video/uikit/jumphack.c @ 2465:f429ccf8e35f gsoc2008_iphone
Added instruction to set the active SDK
author | Holmes Futrell <hfutrell@umail.ucsb.edu> |
---|---|
date | Mon, 18 Aug 2008 18:47:24 +0000 |
parents | 69ca51fd121d |
children |
line wrap: on
line source
/* * jumphack.c * SDLiPhoneOS * */ #include "jumphack.h" /* see SDL_uikitevents.m for more info */ /* stores the information we need to jump back */ jmp_buf env; /* returns the jump environment for setting / getting purposes */ jmp_buf *jump_env() { return &env; }