dxx-rebirth/arch/sdl/include/mixmusic.h
md2211 2a5142e82b First release of the new in-game jukebox system
Specify a music directory with -jukebox
2007-03-12 21:56:41 +00:00

16 lines
281 B
C

/*
* Header file for music playback through SDL_mixer
*
* -- MD2211 (2006-04-24)
*/
#ifndef _SDLMIXER_MUSIC_H
#define _SDLMIXER_MUSIC_H
void mix_play_music(char *, int);
void mix_play_file(char *, char *, int);
void mix_set_music_volume(int);
void mix_stop_music();
#endif