commit 42436e1c5e3bcb4a9c407f5972a0956fcda91098 parent f84763470b11069b9307ef5acef2d1c728859e2d Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Thu, 19 Jan 2023 14:15:04 +0100 Simplify plugin:// Diffstat:
M | include/clap/factory/draft/preset-discovery.h | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/clap/factory/draft/preset-discovery.h b/include/clap/factory/draft/preset-discovery.h @@ -192,9 +192,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://<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. + // - plugin://<resource-id> for presets which are bundled inside the plugin itself + // the resource-id string is defined by the plugin and should unique to avoid clashing + // with other providers const char *uri; } clap_preset_discovery_location_t;