Browse Source

Add PLUGIN_OPTION_SEND_FEEDBACK flag

tags/1.9.4
falkTX 10 years ago
parent
commit
3574f959b6
2 changed files with 8 additions and 0 deletions
  1. +5
    -0
      source/backend/CarlaBackend.h
  2. +3
    -0
      source/carla_backend.py

+ 5
- 0
source/backend/CarlaBackend.h View File

@@ -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;

/** @} */

/* ------------------------------------------------------------------------------------------------------------


+ 3
- 0
source/carla_backend.py View File

@@ -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.


Loading…
Cancel
Save