home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / sound / algorhyt.lha / source / Files.h < prev    next >
C/C++ Source or Header  |  1992-02-21  |  719b  |  23 lines

  1. #ifndef FILES_LOADED
  2. #define FILES_LOADED 1
  3. /* Files.h */
  4. #include "AlgoRhythms.h"
  5.  
  6. extern int Save_File (char *FileName, struct timeval *TotalDuration, 
  7.     const int *ScaleLength, const int Scale[], const int *voices,
  8.     const int *tempo,
  9.     const PARAMETER *Pitch, const PARAMETER *Thickness,
  10.     const PARAMETER *Dynamics,
  11.     const PARAMETER *Duration,
  12.     const NOTEEVENT *Events,
  13.     unsigned int MinNoteLen, unsigned int MaxNoteLen);
  14.     
  15. extern int Read_File (char *FileName, struct timeval *TotalDuration,  
  16.     int *ScaleLength, int Scale[], int *voices, int *tempo,
  17.     PARAMETER *Pitch, PARAMETER *Thickness,
  18.     PARAMETER *Dynamics, PARAMETER *Duration,
  19.     NOTEEVENT *Events,
  20.     unsigned int *MinNoteLen, unsigned int *MaxNoteLen);
  21.  
  22. #endif
  23.