commit 5f0ea376bc3b0be6e12e0bf743b973850276985d parent 85217543e2df5f3c6684ee72192409dec382ee3b Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Thu, 19 Jan 2023 09:09:08 +0100 Make the plugin:// uri more powerful Diffstat:
M | include/clap/factory/draft/preset-discovery.h | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/clap/factory/draft/preset-discovery.h b/include/clap/factory/draft/preset-discovery.h @@ -191,7 +191,9 @@ typedef struct clap_preset_discovery_location { // - file:/// for pointing to a file or directory; directories are scanned recursively // eg: file:///home/abique/.u-he/Diva/presets/ (on Linux) // eg: file:///C:/Users/abique/Documents/u-he/Diva.data/presets/ (on Windows) - // - plugin://<clap-plugin-id> for presets which are bundled inside the plugin itself + // - plugin://<plugin-abi>:<plugin-id> for presets which are bundled inside the plugin itself + // eg: plugin://clap:com.u-he.Diva + // see clap_plugin_id_t for more info. const char *uri; } clap_preset_discovery_location_t;