home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / CD-ROM Tools / CDPlay / Include / cdplay.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-27  |  894 b   |  45 lines

  1. /////////////////////
  2. // CDPlay.HPP
  3. //
  4. // Deryk B Robosson
  5. // December 18, 1995
  6. /////////////////////
  7.  
  8. #ifndef __CDPLAY_HPP__
  9. #define __CDPLAY_HPP__
  10.  
  11. #define ID_PLAY        100
  12. #define ID_PAUSE       101
  13. #define ID_STOP        102
  14. #define ID_NEXT        103
  15. #define ID_PREV        104
  16. #define ID_ABOUTBOX    105
  17. #define ID_ABOUTPANEL  106
  18. #define ID_ABOUT       107
  19. #define USE_BUILTIN_MATH
  20. #define    INTUI_V36_NAMES_ONLY
  21. #define __USE_SYSBASE
  22.  
  23. #include <string.h>
  24. #include <stdlib.h>
  25.  
  26. #include <exec/types.h>
  27. #include <dos/dos.h>
  28. #include <dos/dosextens.h>
  29. #include <devices/cd.h>
  30.  
  31. #include <proto/exec.h>
  32. #include <proto/dos.h>
  33.  
  34. //#include <scsi/commands.h>
  35. #include <devices/scsidisk.h>
  36. #include <devices/trackdisk.h>
  37. #include <devices/timer.h>
  38. #include <exec/devices.h>
  39.  
  40. struct MsgPort *SCSIPort;
  41. struct IOStdReq *SCSIIO;
  42. STRPTR Device = "scsi.device";
  43. ULONG Unit=6;
  44.  
  45. #endif // __CDPLAY_HPP__