Message-Id: <199903201755.MAA22628@delorie.com> Comments: Authenticated sender is From: "George Foot" To: "Matt Murrian" Date: Sat, 20 Mar 1999 17:53:11 +0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Music notation with Allegro CC: djgpp AT delorie DOT com X-mailer: Pegasus Mail for Win32 (v2.42a) Reply-To: djgpp AT delorie DOT com On 20 Mar 99 at 9:21, Matt Murrian wrote: > Hi, I want to create a music notation package, meaning it allows to to write > sheet music, with MIDI playback ... what Allegro functions should I look > into ... I need to be able to play MIDI notes on the fly with a specified > pitch, and duration... From the Allegro documentation: void midi_out(unsigned char *data, int length); Streams a block of MIDI commands into the player in realtime, allowing you to trigger notes, jingles, etc, over the top of whatever MIDI file is currently playing. Also look at the `miditest' program, in the `tests' directory. -- George