home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / M2V11-1.LHA / modula / amiga / TapeDeck.def < prev    next >
Encoding:
Text File  |  1993-11-10  |  783 b   |  32 lines

  1. DEFINITION FOR C MODULE TapeDeck ;
  2.  
  3. FROM Utility IMPORT TAG_USER ;
  4.  
  5. CONST
  6.   TDECK_Dummy    = (TAG_USER+005000000H) ;
  7.   TDECK_Mode    = (TDECK_Dummy + 1) ;
  8.   TDECK_Paused    = (TDECK_Dummy + 2) ;
  9.  
  10.   TDECK_Tape    = (TDECK_Dummy + 3) ;
  11.   (* (BOOL) Indicate whether tapedeck or animation controls.  Defaults  *)
  12.   (* to FALSE.                                *)
  13.  
  14.   TDECK_Frames    = (TDECK_Dummy + 11) ;
  15.   (* (LONG) Number of frames in animation.  Only valid when using    *)
  16.   (* animation controls.                        *)
  17.  
  18.   TDECK_CurrentFrame = (TDECK_Dummy + 12) ;
  19.   (* (LONG) Current frame.  Only valid when using animation controls.    *)
  20.  
  21.   (* Possible values for TDECK_Mode                    *)
  22.   BUT_REWIND    = 0 ;
  23.   BUT_PLAY    = 1 ;
  24.   BUT_FORWARD    = 2 ;
  25.   BUT_STOP    = 3 ;
  26.   BUT_PAUSE    = 4 ;
  27.   BUT_BEGIN    = 5 ;
  28.   BUT_FRAME    = 6 ;
  29.   BUT_END    = 7 ;
  30.  
  31. END TapeDeck.
  32.