clap

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

commit 9fa4b563a5ff7b6c3d8017951adb816d5847ddb0
parent fe3761b83d3f83bc4b39ee7f521382e3b2ef6970
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Thu,  5 May 2022 17:25:36 +0200

Merge main

Diffstat:
Msrc/plugin-template.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/plugin-template.c b/src/plugin-template.c @@ -10,6 +10,7 @@ #include <clap/clap.h> static const clap_plugin_descriptor_t s_my_plug_desc = { + .clap_version = CLAP_VERSION_INIT, .id = "com.your-company.YourPlugin", .name = "Plugin Name", .vendor = "Vendor", @@ -337,7 +338,7 @@ static const void *entry_get_factory(const char *factory_id) { } CLAP_EXPORT const clap_plugin_entry_t clap_entry = { - .clap_version = CLAP_VERSION, + .clap_version = CLAP_VERSION_INIT, .init = entry_init, .deinit = entry_deinit, .get_factory = entry_get_factory,