--- linuxsampler/trunk/src/drivers/midi/MidiInputDevicePlugin.cpp 2009/03/08 09:57:19 1858 +++ linuxsampler/trunk/src/drivers/midi/MidiInputDevicePlugin.cpp 2009/07/12 10:35:55 1934 @@ -64,7 +64,7 @@ } String MidiInputDevicePlugin::Version() { - String s = "$Revision: 1.2 $"; + String s = "$Revision: 1.3 $"; return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword } @@ -79,4 +79,12 @@ void MidiInputDevicePlugin::DeleteMidiPort(MidiInputPort* pPort) { delete (MidiInputPortPlugin*)pPort; } + + bool MidiInputDevicePlugin::isAutonomousDevice() { + return false; + } + + bool MidiInputDevicePlugin::isAutonomousDriver() { + return false; + } }