home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / ace_basic / ace / include / gadgets / tapedeck.h < prev   
C/C++ Source or Header  |  1977-12-31  |  1KB  |  54 lines

  1. #ifndef GADGETS_TAPEDECK_H
  2. #define GADGETS_TAPEDECK_H 1
  3. /*
  4. ** tapedeck.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15.  
  16. /*****************************************************************************/
  17.  
  18. #ifndef UTILITY_TAGITEM_H
  19. #include <utility/tagitem.h>
  20. #endif
  21.  
  22. /*****************************************************************************/
  23.  
  24. #define TDECK_Dummy     (TAG_USER+&H05000000)
  25. #define TDECK_Mode      (TDECK_Dummy + 1)
  26. #define TDECK_Paused        (TDECK_Dummy + 2)
  27.  
  28. #define TDECK_Tape      (TDECK_Dummy + 3)
  29.     /* (SHORTINT) Indicate whether tapedeck or animation controls.  Defaults
  30.      * to FALSE. */
  31.  
  32. #define TDECK_Frames        (TDECK_Dummy + 11)
  33.     /* (LONGINT) Number of frames in animation.  Only valid when using
  34.      * animation controls. */
  35.  
  36. #define TDECK_CurrentFrame  (TDECK_Dummy + 12)
  37.     /* (LONGINT) Current frame.  Only valid when using animation controls. */
  38.  
  39. /*****************************************************************************/
  40.  
  41. /* Possible values for TDECK_Mode */
  42. #define BUT_REWIND  0
  43. #define BUT_PLAY    1
  44. #define BUT_FORWARD 2
  45. #define BUT_STOP    3
  46. #define BUT_PAUSE   4
  47. #define BUT_BEGIN   5
  48. #define BUT_FRAME   6
  49. #define BUT_END     7
  50.  
  51. /*****************************************************************************/
  52.  
  53. #endif /* GADGETS_TAPEDECK_H */
  54.