| 366 | |
| 367 | #if DISTRHO_PLUGIN_WANT_MIDI_INPUT |
| 368 | static void sendNoteCallback(void* const ptr, const uint8_t channel, const uint8_t note, const uint8_t velocity) |
| 369 | { |
| 370 | static_cast<UIVst*>(ptr)->sendNote(channel, note, velocity); |
| 371 | } |
| 372 | #endif |
| 373 | |
| 374 | #if DISTRHO_PLUGIN_WANT_STATE |