home *** CD-ROM | disk | FTP | other *** search
/ PC Loisirs 18 / cd.iso / sharewar / mikm202 / source / include / mwav.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-18  |  245 b   |  19 lines

  1. #ifndef MWAV_H
  2. #define MWAV_H
  3.  
  4. #include <stdio.h>
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. SAMPLE *MW_LoadWavFP(FILE *fp);
  11. SAMPLE *MW_LoadWavFN(char *filename);
  12. void MW_FreeWav(SAMPLE *si);
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17.  
  18. #endif
  19.