wavplayer library  v0.90
Plays 16-bit, 32 ksps, mono wav files
wavplayer.h
Go to the documentation of this file.
1 
21 #ifndef WAVPLAYER_H
22 #define WAVPLAYER_H
23 
24 #if defined(__cplusplus)
25 extern "C" {
26 #endif
27 
33 void wav_play(const char* wavFilename);
34 
40 int wav_playing();
41 
47 void wav_volume(int vol);
48 
55 void wav_stop(void);
56 
64 void wav_close(void);
65 
66 
67 #if defined(__cplusplus)
68 }
69 #endif
70 /* __cplusplus */
71 #endif
72 /* WAVPLAYER_H */
73 
74