vbagx/source/ngc/mixer.h
2008-09-15 00:33:15 +00:00

14 lines
362 B
C

/****************************************************************************
* VisualBoyAdvance
*
* Head and tail audio mixer
****************************************************************************/
#ifndef __AUDIOMIXER__
#define __AUDIOMIXER__
void MIXER_AddSamples( u8 *sampledata, int len );
int MIXER_GetSamples( u8 *dstbuffer, int maxlen );
#endif