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

  1. /*    SPLIT.H        Splitter/Mapper structures
  2.  
  3.     (c) 1986    Todor Fay
  4.  
  5. */
  6.  
  7. struct Split {
  8.     struct Split *next;
  9.     short scale, shift, min, max, decscale;
  10.     unsigned char portin, portout, statusin, statusout;
  11. };
  12.  
  13. struct SplitState {
  14.     long length;
  15.     char name[40];
  16.     struct Split *splitlist;
  17. };
  18.