Add IUnitHandler stubs to component handler proxy

This commit is contained in:
Robbert van der Helm
2020-12-26 14:17:10 +01:00
parent 5e26d30752
commit 934aea3860
4 changed files with 31 additions and 2 deletions
@@ -39,6 +39,13 @@ class Vst3ComponentHandlerProxyImpl : public Vst3ComponentHandlerProxy {
tresult PLUGIN_API endEdit(Steinberg::Vst::ParamID id) override;
tresult PLUGIN_API restartComponent(int32 flags) override;
// From `IUnitHandler`
tresult PLUGIN_API
notifyUnitSelection(Steinberg::Vst::UnitID unitId) override;
tresult PLUGIN_API
notifyProgramListChange(Steinberg::Vst::ProgramListID listId,
int32 programIndex) override;
private:
Vst3Bridge& bridge;
};