clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit e5f86fbcd20183d948f544757479cf1c8c2a5037
parent 5820476b02107b6e62592d1a8afb91d5185ade8c
Author: Dalton Messmer <33463986+messmerd@users.noreply.github.com>
Date:   Thu,  2 Nov 2023 23:52:33 -0400

Clarify return values in plugin.h
Diffstat:
Minclude/clap/plugin.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/clap/plugin.h b/include/clap/plugin.h @@ -59,6 +59,7 @@ typedef struct clap_plugin { // call. The process's sample rate will be constant and process's frame count will included in // the [min, max] range, which is bounded by [1, INT32_MAX]. // Once activated the latency and port configuration must remain constant, until deactivation. + // Returns true on success. // // [main-thread & !active_state] bool(CLAP_ABI *activate)(const struct clap_plugin *plugin, @@ -69,6 +70,7 @@ typedef struct clap_plugin { void(CLAP_ABI *deactivate)(const struct clap_plugin *plugin); // Call start processing before processing. + // Returns true on success. // [audio-thread & active_state & !processing_state] bool(CLAP_ABI *start_processing)(const struct clap_plugin *plugin);