dxx-rebirth/arch/include/jukebox.h
md2211 324c0df6a1 * Huge SDL_mixer refactoring; sound backend now selectable at runtime, in D1X & D2X
* Sound system now uses a set of function pointers (digi.c) as a single interface to either SDL or SDL_mixer
* Ported jukebox functionality to D2X
2007-09-18 13:37:39 +00:00

16 lines
284 B
C

#ifndef __JUKEBOX_H__
#define __JUKEBOX_H__
void jukebox_load();
void jukebox_play();
void jukebox_stop();
void jukebox_stop_hook();
void jukebox_next();
void jukebox_prev();
char *jukebox_current();
int jukebox_is_loaded();
int jukebox_is_playing();
void jukebox_list();
#endif