home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / GameSmith1-Hisoft-System.DMS / in.adf / GDS_System.lha / include / proto / sound.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-11  |  444 b   |  16 lines

  1. #ifndef GS_SOUNDPROTO
  2. #define GS_SOUNDPROTO
  3.  
  4. int gs_open_sound(int,int,int,int);
  5. void gs_close_sound(void);
  6. void gs_start_sound(struct sound_struct *,int);
  7. void gs_stop_sound(int);
  8. void gs_set_volume(int,int);
  9. void gs_set_period(int,int);
  10. int gs_load_raw_sound(struct sound_struct *,char *);
  11. int gs_load_iff_sound(struct sound_struct *,struct sound_struct *,char *);
  12. void gs_free_sound(struct sound_struct *);
  13. int gs_sound_check(void);
  14.  
  15. #endif
  16.