| 192 | } |
| 193 | |
| 194 | void setState(const char* const key, const char* const value) |
| 195 | { |
| 196 | if (fOscData.server == nullptr) |
| 197 | return; |
| 198 | |
| 199 | fOscData.send_configure(key, value); |
| 200 | } |
| 201 | |
| 202 | #if DISTRHO_PLUGIN_WANT_MIDI_INPUT |
| 203 | void sendNote(const uint8_t channel, const uint8_t note, const uint8_t velocity) |
no test coverage detected