home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 543a.lha / Nebula / source.LZH / source / easysound.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-04  |  627 b   |  37 lines

  1. /*
  2.  
  3. ------------------------------------------------------------------
  4.  
  5. Black Nebula
  6.  
  7. File :                Easysound.c
  8. Programmer:        Public Domain
  9. Date:                ?
  10. Last Modified :    15/5/91
  11.  
  12. Description:
  13.  
  14. Defines some constants
  15.  
  16. ------------------------------------------------------------------
  17.  
  18. */
  19.  
  20. /* Sound channels: */
  21.  
  22. #define LEFT0         0
  23. #define RIGHT0        1
  24. #define RIGHT1        2
  25. #define LEFT1         3
  26.  
  27. #define NONSTOP       0
  28. #define ONCE          1
  29. #define MAXVOLUME    64
  30. #define MINVOLUME     0
  31. #define NORMALRATE    0
  32.  
  33. extern CPTR PrepareSound();
  34. extern BOOL PlaySound();
  35. extern void StopSound();
  36. extern void RemoveSound();
  37.