fixed z-order problems in poly2bitmap
[swftools.git] / lib / wav.h
index c671df8..8f25326 100644 (file)
--- a/lib/wav.h
+++ b/lib/wav.h
@@ -19,8 +19,8 @@ struct WAV {
     unsigned int size;
 };
 
-int readWAV(char* filename, struct WAV*wav);
-int writeWAV(char*filename, struct WAV*wav);
-void printWAVInfo(struct WAV*wav);
-int convertWAV2mono(struct WAV*src, struct WAV*dest, int rate);
+int wav_read(struct WAV*wav, const char* filename);
+int wav_write(struct WAV*wav, const char*filename);
+void wav_print(struct WAV*wav);
+int wav_convert2mono(struct WAV*src, struct WAV*dest, int rate);