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
@@ -66,3 +66,18 @@ Vst3ComponentHandlerProxyImpl::restartComponent(int32 flags) {
return bridge.send_message(YaComponentHandler::RestartComponent{
.owner_instance_id = owner_instance_id(), .flags = flags});
}
tresult PLUGIN_API Vst3ComponentHandlerProxyImpl::notifyUnitSelection(
Steinberg::Vst::UnitID unitId) {
// TODO: Implement
std::cerr << "TODO: IUnitHandler::notifyUnitSelection" << std::endl;
return Steinberg::kNotImplemented;
}
tresult PLUGIN_API Vst3ComponentHandlerProxyImpl::notifyProgramListChange(
Steinberg::Vst::ProgramListID listId,
int32 programIndex) {
// TODO: Implement
std::cerr << "TODO: IUnitHandler::notifyProgramListChange" << std::endl;
return Steinberg::kNotImplemented;
}