home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / MK1_23.ZIP / MWAV.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-06  |  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 *MK_LoadWave(char *filename);
  11. SAMPLE *MK_LoadWave2(FILE *fp);
  12. void MK_FreeWave(SAMPLE *si);
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17.  
  18. #endif
  19.