mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-18 01:13:55 +02:00
Add stubs for IPlugInterfaceSupport
This commit is contained in:
@@ -93,3 +93,12 @@ Vst3HostContextProxyImpl::createInstance(Steinberg::TUID /*cid*/,
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
tresult PLUGIN_API
|
||||
Vst3HostContextProxyImpl::isPlugInterfaceSupported(const Steinberg::TUID _iid) {
|
||||
// TODO: Implement
|
||||
std::cerr
|
||||
<< "TODO: Implement IPlugInterfaceSupport::isPlugInterfaceSupported()"
|
||||
<< std::endl;
|
||||
return Steinberg::kNotImplemented;
|
||||
}
|
||||
|
||||
@@ -36,6 +36,10 @@ class Vst3HostContextProxyImpl : public Vst3HostContextProxy {
|
||||
Steinberg::TUID _iid,
|
||||
void** obj) override;
|
||||
|
||||
// From `IPlugInterfaceSupport`
|
||||
tresult PLUGIN_API
|
||||
isPlugInterfaceSupported(const Steinberg::TUID _iid) override;
|
||||
|
||||
private:
|
||||
Vst3Bridge& bridge;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user