From 3574f959b62349ca8df5542b5189790f9262105a Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 12 Mar 2014 01:13:17 +0000 Subject: [PATCH] Add PLUGIN_OPTION_SEND_FEEDBACK flag --- source/backend/CarlaBackend.h | 5 +++++ source/carla_backend.py | 3 +++ 2 files changed, 8 insertions(+) diff --git a/source/backend/CarlaBackend.h b/source/backend/CarlaBackend.h index 624663639..ed49ac15c 100644 --- a/source/backend/CarlaBackend.h +++ b/source/backend/CarlaBackend.h @@ -226,6 +226,11 @@ const unsigned int PLUGIN_OPTION_SEND_PITCHBEND = 0x080; */ const unsigned int PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100; +/*! + * Send MIDI CC automation output feedback. + */ +const unsigned int PLUGIN_OPTION_SEND_FEEDBACK = 0x200; + /** @} */ /* ------------------------------------------------------------------------------------------------------------ diff --git a/source/carla_backend.py b/source/carla_backend.py index 50def6c82..11e6d00d5 100644 --- a/source/carla_backend.py +++ b/source/carla_backend.py @@ -255,6 +255,9 @@ PLUGIN_OPTION_SEND_PITCHBEND = 0x080 # Send MIDI all-sounds/notes-off events, single note-offs otherwise. PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100 +# Send MIDI CC automation output feedback. +PLUGIN_OPTION_SEND_FEEDBACK = 0x200 + # ------------------------------------------------------------------------------------------------------------ # Parameter Hints # Various parameter hints.