wavplayer library  v0.8
Plays 16-bit, 32 ksps, mono wav files
wavplayer.h
Go to the documentation of this file.
1 
15 #ifndef WAVPLAYER_H
16 #define WAVPLAYER_H
17 
18 #if defined(__cplusplus)
19 extern "C" {
20 #endif
21 
27 void wav_play(const char* wavFilename);
28 
34 int wav_playing();
35 
41 void wav_volume(int vol);
42 
46 void wav_stop(void);
47 
48 
49 
50 #if defined(__cplusplus)
51 }
52 #endif
53 /* __cplusplus */
54 #endif
55 /* WAVPLAYER_H */
56 
57