I've only got Reaper and would like to know how other hosts present this description to the user.
In Reaper it will show this plugin as "ClapSynth (K Roland)"
static const clap_plugin_descriptor_t pluginDescriptor = {
.clap_version = CLAP_VERSION_INIT,
.id = "ClapSynth",
.name = "ClapSynth",
.vendor = "K Roland",
.url = "-",
.manual_url = "-",
.support_url = "-",
.version = "1000",
.description = "-",
.features = features_init()
};
- Is it ok for .id and .name to be the same string "ClapSynth"
- If I set .version = "1000" will it show as version 1 or version 1000
-As all members must be filled is it ok to fill any unused entry's with a "-"
Regards
Kirsty
In Reaper it will show this plugin as "ClapSynth (K Roland)"
static const clap_plugin_descriptor_t pluginDescriptor = {
.clap_version = CLAP_VERSION_INIT,
.id = "ClapSynth",
.name = "ClapSynth",
.vendor = "K Roland",
.url = "-",
.manual_url = "-",
.support_url = "-",
.version = "1000",
.description = "-",
.features = features_init()
};
- Is it ok for .id and .name to be the same string "ClapSynth"
- If I set .version = "1000" will it show as version 1 or version 1000
-As all members must be filled is it ok to fill any unused entry's with a "-"
Regards
Kirsty
Statistics: Posted by kirsty roland — Sat Dec 14, 2024 5:06 pm — Replies 4 — Views 90