mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 16:35:11 +01:00
14 lines
362 B
C
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
|
|
|