home *** CD-ROM | disk | FTP | other *** search
/ Audio Version 4.94 / audioversion4.94knowledgemediaresourcelibraryoctober1994.iso / amiga / utils / exp_iv / int_play.h < prev    next >
C/C++ Source or Header  |  1991-05-05  |  548b  |  29 lines

  1. /* int_play.h */
  2.  
  3. /* auxiliary structures for the player handler */
  4.  
  5. /*
  6.  * $Author: Espie $
  7.  * $Date: 91/05/05 19:06:17 $
  8.  * $Revision: 1.1 $
  9.  * $Log:    int_play.h,v $
  10.  * Revision 1.1  91/05/05  19:06:17  Espie
  11.  * Initial revision
  12.  * 
  13.  *
  14.  */
  15.  
  16.  
  17. struct play
  18.     {
  19.         struct pub_play public;
  20.         struct priv_play private;
  21.         UWORD *period_table[NUMBER_TUNING];
  22.         UWORD periods[NUMBER_TUNING * NUMBER_NOTES];
  23.         struct automaton tracks[NUMBER_TRACKS];
  24.         BYTE sine_table[LENGTH_SINE];
  25.         COMMAND setup[NUMBER_COMMANDS];
  26.         UBYTE channel_mask[NUMBER_TRACKS];
  27.     };
  28.     
  29.