d1d62d629f72570a908bfd8158c7f583017dbaaf
[libpicofe.git] / plat_sdl.h
1 #include <SDL.h>
2
3 extern SDL_Surface *plat_sdl_screen;
4 extern SDL_Overlay *plat_sdl_overlay;
5 extern int plat_sdl_gl_active;
6 extern void (*plat_sdl_quit_cb)(void);
7
8 int plat_sdl_init(void);
9 int plat_sdl_change_video_mode(int w, int h, int force);
10 void plat_sdl_overlay_clear(void);
11 void plat_sdl_event_handler(void *event_);
12 void plat_sdl_finish(void);