huge CVS merge, see ChangeLog for details.
[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 #if !defined( SUPERTUX_SETUP_H )
14 #define SUPERTUX_SETUP_H 1
15
16         #include "sound.h"
17
18         int faccessible(char *filename);
19         int fcreatedir(char* relative_dir);
20         int fwriteable(char *filename);
21         char ** dsubdirs(char *rel_path, char* expected_file, int* num);
22         void free_strings(char **strings, int num);
23         void st_directory_setup(void);
24         void st_general_setup(void);
25         void st_video_setup_sdl(void);
26         void st_video_setup_gl(void);
27         void st_video_setup(void);
28         void st_audio_setup(void);
29         void st_joystick_setup(void);
30         void st_shutdown(void);
31         void st_menu(void);
32         void st_abort(char * reason, char * details);
33         void process_options_menu(void);
34         void parseargs(int argc, char * argv[]);
35 #endif
36