<> <> <> <> <> DIRECTORY MusicDefs USING [NoteRec, NotePTR]; Interface: CEDAR DEFINITIONS = BEGIN count: BOOL; Object: TYPE = {note, rest, measure, staves, doubleMeasure, repeat1, repeat2, endMeasure, treble, bass, octava, doubleFlat, flat, natural, inKey, sharp, doubleSharp, trill, mordent1, mordent2, none}; DeleteGraphical: PROC; Flash: PROC; InsertNote: PROC[object: Object]; MoveGraphical: PROC[object: Object]; MoveNote: PROC[n: MusicDefs.NotePTR]; Wait: PROC[ticks: CARDINAL]; END.