summaryrefslogtreecommitdiff
path: root/mixer.h
diff options
context:
space:
mode:
Diffstat (limited to 'mixer.h')
-rw-r--r--mixer.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/mixer.h b/mixer.h
index 6228349ed..d50dc4739 100644
--- a/mixer.h
+++ b/mixer.h
@@ -3,7 +3,6 @@
#ifndef MIXER_H
#define MIXER_H
-typedef struct Mixer Mixer;
typedef struct MixerChannel MixerChannel;
enum {
@@ -13,12 +12,10 @@ enum {
// MX_UNSIGNED = 8,
};
-VARDEF Mixer *_mixer;
-
bool MxInitialize(uint rate);
-void MxMixSamples(Mixer *mx, void *buffer, uint samples);
+void MxMixSamples(void* buffer, uint samples);
-MixerChannel *MxAllocateChannel(Mixer *mx);
+MixerChannel* MxAllocateChannel(void);
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, uint size, uint rate, uint flags);
void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
void MxActivateChannel(MixerChannel*);