mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
21 lines
474 B
C
21 lines
474 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* audio.h
|
|
*
|
|
* 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
|