mirror of
https://github.com/dborth/vbagx.git
synced 2024-12-28 03:31:49 +01:00
16 lines
422 B
C
16 lines
422 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 );
|
|
void StopAudio();
|
|
void StartAudio();
|
|
void InitialiseSound();
|
|
|
|
#endif
|