clap

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

commit f6d86a7e7c9cd3da233cb9ffa8e54396000ecabf
parent fab73dab8192cd7a9bf8dc04bc80ba09f661b7e1
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Fri, 24 Mar 2023 12:31:18 +0100

clarify what the `plugin_path` is on macOS

Diffstat:
MChangeLog.md | 4++++
Minclude/clap/entry.h | 2++
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/ChangeLog.md b/ChangeLog.md @@ -1,3 +1,7 @@ +# Changes in 1.1.9 + +* [entry.h](include/clap/entry.h): clarify what the `plugin_path` is on macOS + # Changes in 1.1.8 * [params.h](include/clap/ext/params.h): document how persisting parameter values between sessions should be implemented diff --git a/include/clap/entry.h b/include/clap/entry.h @@ -48,6 +48,8 @@ typedef struct clap_plugin_entry { // // If init() returns false, then the host must not call deinit() nor any other clap // related symbols from the DSO. + // + // plugin_path is the path to the DSO (Linux, Windows), or the bundle (macOS). bool(CLAP_ABI *init)(const char *plugin_path); // No more calls into the DSO must be made after calling deinit().