blob: a45f917936f0f7a883a835bf1d86211778fd07f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* PARSEC HEADER: aud_bkgn.h
*/
#ifndef _AUD_BKGN_H_
#define _AUD_BKGN_H_
// external functions
void AUD_BackGroundPlayer_Init( int voice );
void AUD_BackGroundPlayer_Kill();
int AUD_BackGroundPlayer_AddSample( const char *name );
int AUD_BackGroundPlayer_RemoveSample( char *name );
int AUD_BackGroundPlayer_AddTrack( int track );
int AUD_BackGroundPlayer_RemoveTrack( int track );
int AUD_BackGroundPlayer_AddStream( const char *name );
int AUD_BackGroundPlayer_AddSilence( int seconds );
int AUD_BackGroundPlayer_RemoveItem( int item );
int AUD_BackGroundPlayer_Start( int fromevent );
int AUD_BackGroundPlayer_Stop();
int AUD_BackGroundPlayer_IsPlaying();
int AUD_BackGroundPlayer_Maintain();
void AUD_BackGroundPlayer_List();
#endif // _AUD_BKGN_H_
|