*** empty log message ***

This commit is contained in:
Dave Schuyler 2001-07-10 23:48:33 +00:00
parent f09691b1ce
commit 4ece190476

View File

@ -22,6 +22,10 @@
#include <pandabase.h>
#include <referenceCount.h>
#if ! defined(HAVE_RAD_MSS)
#error where is rad mss?
#endif
class EXPCL_PANDA AudioTraits {
public:
class SoundClass;
@ -74,19 +78,4 @@ public:
};
};
// this is really ugly. But since we have to be able to include/compile
// all of the driver files on any system, I need to centralize a switch
// for which one is real.
#ifdef HAVE_SYS_SOUNDCARD_H
#define AUDIO_USE_LINUX
#elif defined(HAVE_RAD_MSS)
#define AUDIO_USE_RAD_MSS
#elif defined(WIN32_VC)
#define AUDIO_USE_WIN32
#elif defined(HAVE_MIKMOD)
#define AUDIO_USE_MIKMOD
#else
#define AUDIO_USE_NULL
#endif
#endif /* __AUDIO_TRAIT_H__ */