commit a176f64d63b48803e208b4a2f70ec64c353e1ac2 parent 8ae34bb149b21522d1ce24d16dbac27e691b634e Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Tue, 24 Jan 2023 12:37:21 +0100 Simplify the plugin:// Diffstat:
M | include/clap/factory/draft/preset-discovery.h | | | 6 | ++---- |
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/include/clap/factory/draft/preset-discovery.h b/include/clap/factory/draft/preset-discovery.h @@ -193,10 +193,8 @@ typedef struct clap_preset_discovery_location { // eg: file:///home/abique/.u-he/Diva/Presets/Diva (on Linux) // eg: file:///C:/Users/abique/Documents/u-he/Diva.data/presets/ (on Windows) // - // - plugin://<resource-id> for presets which are bundled inside the plugin itself. - // The resource-id string is defined by the plugin and should be unique to avoid clashing - // with other providers, because when preset_load.from_uri() will be called, the - // provider's origin won't be known. + // - plugin:// for presets which are bundled within the plugin DSO. + // The path component may be empty. const char *uri; } clap_preset_discovery_location_t;