commit 41567c099dbb8f2451f0609db7132d6316f5d52a
parent 281f08f807f9039a09649f451f31a98173734c3a
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date: Mon, 24 Jan 2022 17:40:40 +0100
vst3 converter now takes uses vst3's tuid
Fixes #52
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/clap/converters/vst3-converter.h b/include/clap/converters/vst3-converter.h
@@ -12,7 +12,9 @@ extern "C" {
// This interface provide all the tool to convert a vst3 plugin instance into a clap plugin instance
typedef struct clap_vst3_converter {
- const char *vst3_plugin_id;
+ // The VST FUID can be constructed by:
+ // Steinberg::FUID::fromTUID(conv->vst3_plugin_tuid);
+ const int8_t vst3_plugin_tuid[16];
const char *clap_plugin_id;
// [main-thread]