commit 4e036f81253e75f9c56b959a102fa72685b92636 parent 406bd4ad1005e3b8fd06eafd35c6e2a61d35c962 Author: Alexandre BIQUE <bique.alexandre@gmail.com> Date: Sun, 27 Feb 2022 08:58:35 +0100 Add ramp time to param value and mod Diffstat:
M | include/clap/events.h | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/clap/events.h b/include/clap/events.h @@ -150,6 +150,7 @@ typedef struct clap_event_param_value { int16_t key; int16_t channel; + uint16_t ramp_time; // suggested ramp time in sample double value; } clap_event_param_value_t; @@ -165,6 +166,7 @@ typedef struct clap_event_param_mod { int16_t key; int16_t channel; + uint16_t ramp_time; // suggested ramp time in samples double amount; // modulation amount } clap_event_param_mod_t;