wavplayer library  v0.90
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 
50 void wav_stop(void);
51 
59 void wav_close(void);
60 
61 
62 #if defined(__cplusplus)
63 }
64 #endif
65 /* __cplusplus */
66 #endif
67 /* WAVPLAYER_H */
68 
69