Add IEditController to the PluginObject interfaces

This commit is contained in:
Robbert van der Helm
2020-12-17 17:51:47 +01:00
parent 286023bc22
commit d8694b062b
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -28,6 +28,7 @@ PluginObject::PluginObject(Steinberg::IPtr<Steinberg::FUnknown> object)
: object(object),
audio_processor(object),
component(object),
edit_controller(object),
plugin_base(object) {}
Vst3Bridge::Vst3Bridge(MainContext& main_context,
+1
View File
@@ -54,6 +54,7 @@ struct PluginObject {
Steinberg::FUnknownPtr<Steinberg::Vst::IAudioProcessor> audio_processor;
Steinberg::FUnknownPtr<Steinberg::Vst::IComponent> component;
Steinberg::FUnknownPtr<Steinberg::Vst::IEditController> edit_controller;
Steinberg::FUnknownPtr<Steinberg::IPluginBase> plugin_base;
};