home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 202.lha / SoundScape / Include / tapedeck.h < prev   
Encoding:
C/C++ Source or Header  |  1988-12-28  |  471 b   |  16 lines

  1. /*    Tape Deck status structure. 
  2.     (c) 1986 Todor Fay
  3. */ 
  4.  
  5. struct TapeState { 
  6.     long length; 
  7.     struct Track *toptrack;         /* Top track in list. */
  8.     struct Track *activetrack;         /* Current active edit track. */
  9.     unsigned long td_timer;        /* Current time in MIDI clocks. */
  10.     unsigned long punchin, punchout;    /* Punch in and out points. */
  11.     char trackname[40];         /* The file name of the list. */
  12.     struct Link *garbagelist;
  13.     struct Link *notgarbage;
  14. };
  15.  
  16.