#include #include extern MpuCmd TimingClockInPlay; putTCIP(fd) /* ** Write a `timing clock in play` MIDI command with offset 't' ** onto file descriptor 'fd'. ** In the absence of other MIDI events, a TCWME event ** must occur every 'Period' (default=240) ticks; ** cf. 'MidiStretch', etc. */ { extern MpuCmd TimingClockInPlay; putMpuCmd(fd,&TimingClockInPlay); } PutTCIP(f) FILE *f; /* ** Same as 'putTCIP(fileno(f))'. */ { putTCIP(fileno(f)); }