Improved buttons. You can create new level-subsets via the leveleditor now. Better...
[supertux.git] / src / setup.h
1 /*
2   setup.h
3   
4   Super Tux - Setup
5   
6   by Bill Kendrick
7   bill@newbreedsoftware.com
8   http://www.newbreedsoftware.com/supertux/
9   
10   April 11, 2000 - April 13, 2000
11 */
12
13 #ifndef SUPERTUX_SETUP_H
14 #define SUPERTUX_SETUP_H
15
16 #include "menu.h"
17 #include "sound.h"
18
19 int faccessible(char *filename);
20 int fcreatedir(char* relative_dir);
21 int fwriteable(char *filename);
22 char ** dsubdirs(char *rel_path, char* expected_file, int* num);
23 void free_strings(char **strings, int num);
24 void st_directory_setup(void);
25 void st_general_setup(void);
26 void st_video_setup_sdl(void);
27 void st_video_setup_gl(void);
28 void st_video_setup(void);
29 void st_audio_setup(void);
30 void st_joystick_setup(void);
31 void st_shutdown(void);
32 void st_menu(void);
33 void st_abort(char * reason, char * details);
34 void process_options_menu(void);
35 void process_save_load_game_menu(int save);
36 void update_load_save_game_menu(menu_type* pmenu, int load);
37 void parseargs(int argc, char * argv[]);
38
39 #endif /*SUPERTUX_SETUP_H*/
40