src/mixer.h
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6527 f584ab6d87f8
--- a/src/mixer.h	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/mixer.h	Mon Mar 19 12:38:16 2007 +0000
@@ -5,7 +5,7 @@
 #ifndef MIXER_H
 #define MIXER_H
 
-typedef struct MixerChannel MixerChannel;
+struct MixerChannel;
 
 enum {
 	MX_AUTOFREE = 1,
@@ -17,7 +17,7 @@
 bool MxInitialize(uint rate);
 void MxMixSamples(void* buffer, uint samples);
 
-MixerChannel* MxAllocateChannel(void);
+MixerChannel* MxAllocateChannel();
 void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, uint size, uint rate, uint flags);
 void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
 void MxActivateChannel(MixerChannel*);