| 253 | } |
| 254 | |
| 255 | void MidiDevice::SendSysEx(std::string data) |
| 256 | { |
| 257 | if (mMidiOut) |
| 258 | { |
| 259 | mMidiOut->sendMessageNow(MidiMessage::createSysExMessage(data.c_str(), (int)data.length())); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | void MidiDevice::SendData(unsigned char a, unsigned char b, unsigned char c) |
| 264 | { |