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