mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 18:21:38 +00:00
7b0104e9a1
git-svn-id: https://svn.eduke32.com/eduke32@452 1a8010ca-5511-0410-912e-c29ae57300e0
39 lines
639 B
C++
Executable file
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;
|
|
}
|