2005-07-24 15:12:37 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 16:11:33 +01:00
|
|
|
/** @file sdl_s.h Base fo playing sound via SDL. */
|
|
|
|
|
2005-07-23 16:16:57 +01:00
|
|
|
#ifndef SOUND_SDL_H
|
|
|
|
#define SOUND_SDL_H
|
|
|
|
|
2007-07-05 13:23:54 +01:00
|
|
|
#include "sound_driver.hpp"
|
2005-07-23 16:16:57 +01:00
|
|
|
|
2007-07-05 13:23:54 +01:00
|
|
|
class SoundDriver_SDL: public SoundDriver {
|
|
|
|
public:
|
|
|
|
/* virtual */ const char *Start(const char * const *param);
|
|
|
|
|
|
|
|
/* virtual */ void Stop();
|
|
|
|
};
|
|
|
|
|
|
|
|
class FSoundDriver_SDL: public SoundDriverFactory<FSoundDriver_SDL> {
|
|
|
|
public:
|
2007-07-07 21:31:23 +01:00
|
|
|
static const int priority = 5;
|
2007-07-05 13:23:54 +01:00
|
|
|
/* virtual */ const char *GetName() { return "sdl"; }
|
|
|
|
/* virtual */ const char *GetDescription() { return "SDL Sound Driver"; }
|
|
|
|
/* virtual */ Driver *CreateInstance() { return new SoundDriver_SDL(); }
|
|
|
|
};
|
2005-07-23 16:16:57 +01:00
|
|
|
|
2007-02-12 21:55:10 +00:00
|
|
|
#endif /* SOUND_SDL_H */
|