raze-gles/polymer/jfaud/src/mixer.cpp
terminx 7b0104e9a1 JFAud
git-svn-id: https://svn.eduke32.com/eduke32@452 1a8010ca-5511-0410-912e-c29ae57300e0
2007-01-12 22:42:19 +00:00

39 lines
639 B
C++
Executable file

#define JFAUD_INTERNAL
#include "sysdefs.h"
#ifdef SCREWED_UP_CPP
# include "watcomhax/cstdlib"
#else
# include <cstdlib>
#endif
#include "mixer.hpp"
#ifndef SCREWED_UP_CPP
using namespace std;
#endif
JFAudMixerChannel::JFAudMixerChannel()
: stopcallback(NULL), stopcallbackid(0)
{
}
JFAudMixerChannel::~JFAudMixerChannel()
{
}
bool JFAudMixerChannel::SetStopCallback( void (*cb)(int), int id)
{
stopcallback = cb;
stopcallbackid = id;
return true;
}
bool JFAudMixerChannel::SetFilter(Filter which)
{
return false; // not supported by default
}
bool JFAudMixerChannel::SetDistanceModel(DistanceModel which)
{
return false;
}