--- linuxsampler/trunk/src/drivers/midi/MidiInputPort.h 2004/08/20 17:25:19 221 +++ linuxsampler/trunk/src/drivers/midi/MidiInputPort.h 2004/09/17 01:01:11 244 @@ -175,6 +175,16 @@ */ void DispatchControlChange(uint8_t Controller, uint8_t Value, uint MidiChannel); + /** + * Should be called by the implementing MIDI input device + * whenever a system exclusive message arrived, this will cause + * the message to be forwarded to all connected engines. + * + * @param pData - pointer to the sysex data + * @param Size - length of the sysex data (in bytes) + */ + void DispatchSysex(void* pData, uint Size); + protected: MidiInputDevice* pDevice; int portNumber;