mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Add IEditController to the PluginObject interfaces
This commit is contained in:
@@ -28,6 +28,7 @@ PluginObject::PluginObject(Steinberg::IPtr<Steinberg::FUnknown> object)
|
|||||||
: object(object),
|
: object(object),
|
||||||
audio_processor(object),
|
audio_processor(object),
|
||||||
component(object),
|
component(object),
|
||||||
|
edit_controller(object),
|
||||||
plugin_base(object) {}
|
plugin_base(object) {}
|
||||||
|
|
||||||
Vst3Bridge::Vst3Bridge(MainContext& main_context,
|
Vst3Bridge::Vst3Bridge(MainContext& main_context,
|
||||||
|
|||||||
@@ -54,6 +54,7 @@ struct PluginObject {
|
|||||||
|
|
||||||
Steinberg::FUnknownPtr<Steinberg::Vst::IAudioProcessor> audio_processor;
|
Steinberg::FUnknownPtr<Steinberg::Vst::IAudioProcessor> audio_processor;
|
||||||
Steinberg::FUnknownPtr<Steinberg::Vst::IComponent> component;
|
Steinberg::FUnknownPtr<Steinberg::Vst::IComponent> component;
|
||||||
|
Steinberg::FUnknownPtr<Steinberg::Vst::IEditController> edit_controller;
|
||||||
Steinberg::FUnknownPtr<Steinberg::IPluginBase> plugin_base;
|
Steinberg::FUnknownPtr<Steinberg::IPluginBase> plugin_base;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user