/* * audio.h * * Sound stuff * * (c) 2008 Thomas White * * thrust3d - a silly game * */ #ifdef HAVE_CONFIG_H #include #endif #ifndef AUDIO_H #define AUDIO_H #include "types.h" extern AudioContext *audio_setup(void); extern void audio_shutdown(AudioContext *ctx); #endif /* AUDIO_H */