Add stubs for IPlugInterfaceSupport

This commit is contained in:
Robbert van der Helm
2021-01-16 14:38:27 +01:00
parent a8699eed18
commit 6c40cd5ad1
5 changed files with 34 additions and 5 deletions
@@ -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;
};