home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / msdos / digitize / blast / blaster.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-16  |  911 b   |  53 lines

  1. /*
  2.  *
  3.  *                 Blaster Include(v1.2)
  4.  *
  5.  *             Engineered by Shawn Leaf & Joel Lucsy
  6.  *
  7.  *
  8.  */
  9.  
  10. #define SBOK    0
  11. #define    SBOFF    0
  12. #define SBON    1
  13.  
  14. typedef    unsigned int status_type;
  15. typedef void far *sbvoc_type;
  16.  
  17. int load_drv();
  18.  
  19. int alloc_snd(sbvoc_type *__sound_file,unsigned long __size);
  20.  
  21. int load_snd(char *__filename,sbvoc_type *__sound_file);
  22.  
  23. int save_snd(char *__filename,sbvoc_type __sound_file);
  24.  
  25. int get_vers();
  26.  
  27. void set_base_io(int __base_adr);
  28.  
  29. void set_interrupt_num(int __number);
  30.  
  31. int init_drv();
  32.  
  33. void set_speaker(int __status);
  34.  
  35. void set_status(status_type *__mem_loc);
  36.  
  37. void play_snd(sbvoc_type __sound_file);
  38.  
  39. void record_snd(sbvoc_type __sound_file,unsigned long __length,int __speed);
  40.  
  41. void stop_snd();
  42.  
  43. void uninstall_drv();
  44.  
  45. int pause_snd();
  46.  
  47. int cont_snd();
  48.  
  49. int brk_repeat(int __mode);
  50.  
  51. void unload_snd(sbvoc_type __sound_file);
  52.  
  53.