src/mixer.h
changeset 9390 88d36f907e96
parent 9111 48ce04029fe4
equal deleted inserted replaced
9389:b547cd1aaac2 9390:88d36f907e96
    16 
    16 
    17 bool MxInitialize(uint rate);
    17 bool MxInitialize(uint rate);
    18 void MxMixSamples(void *buffer, uint samples);
    18 void MxMixSamples(void *buffer, uint samples);
    19 
    19 
    20 MixerChannel *MxAllocateChannel();
    20 MixerChannel *MxAllocateChannel();
    21 void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, uint size, uint rate, uint flags);
    21 void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, size_t size, uint rate, uint flags);
    22 void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
    22 void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
    23 void MxActivateChannel(MixerChannel*);
    23 void MxActivateChannel(MixerChannel*);
    24 
    24 
    25 #endif /* MIXER_H */
    25 #endif /* MIXER_H */