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
/
AlgoRhythms.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-21
|
582b
|
33 lines
#ifndef ALGORHYTHMS_LOADED
#define ALGORHYTHMS_LOADED 1
/* AlgoRhythms.h */
#define MAXVOICE (20)
typedef struct {
struct timeval StartTime,
Duration,
StopTime;
int Pitch,
Dynamic,
Channel,
CurPitch,
LowPitch, /* CHANGE THIS IN ALGORHYTHMS.C AND MUSICSERIAL.C*/
HighPitch,
Walking,
Playing;
} NOTEEVENT;
typedef struct {
double CenterCycle,
CenterPhase,
SpreadCycle,
SpreadPhase;
} PARAMETER;
extern int fubar;
extern int quit;
extern int scale[];
#endif