wavplayer library  v0.90
Plays 16-bit, 32 ksps, mono wav files
wavplayer.h
Go to the documentation of this file.
1 
32 #ifndef WAVPLAYER_H
33 #define WAVPLAYER_H
34 
35 #if defined(__cplusplus)
36 extern "C" {
37 #endif
38 
44 void wav_play(const char* wavFilename);
45 
51 int wav_playing();
52 
58 void wav_volume(int vol);
59 
66 void wav_stop(void);
67 
75 void wav_close(void);
76 
77 
78 #if defined(__cplusplus)
79 }
80 #endif
81 /* __cplusplus */
82 #endif
83 /* WAVPLAYER_H */
84