clap

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

commit 2bdfd65135d4d9acccbee6c0fff96865fc2b993b
parent e5f66c9209fe35af449031202ddd4dda0af68d55
Author: defiantnerd <97224712+defiantnerd@users.noreply.github.com>
Date:   Thu, 30 Jun 2022 19:51:55 +0200

state_context->set(...)

renamed the function pointer for a better wording
Diffstat:
Minclude/clap/ext/draft/state-context.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/clap/ext/draft/state-context.h b/include/clap/ext/draft/state-context.h @@ -74,7 +74,7 @@ typedef struct clap_plugin_state_context { // Assign the context for subsequent calls to ->save() or load() of the // clap_plugin_state extension. // [main-thread] - void (*set_state_context)(const clap_plugin_t *plugin, uint32_t context); + void (*set)(const clap_plugin_t *plugin, uint32_t context); } clap_plugin_state_context_t; #ifdef __cplusplus