dab62c20c5aee96b19ba87d8ee0d859c5fed78ca
[mercenary-reloaded.git] / src / libsdl / sdl.h
1 #include <SDL2/SDL.h>
2
3 int init_sdl(const char *progname, int width, int height, int sound_samplerate, int sound_chunk);
4 int event_sdl(void);
5 void swap_sdl(void);
6 void exit_sdl(void);
7 void audio_sdl(float *data, int len);
8 void keyboard_sdl(int down, SDL_Keycode sym);
9