pub trait IUnitHandlerTrait {
    // Required methods
    unsafe fn notifyUnitSelection(&self, unitId: UnitID) -> tresult;
    unsafe fn notifyProgramListChange(
        &self,
        listId: ProgramListID,
        programIndex: int32
    ) -> tresult;
}

Required Methods§

source

unsafe fn notifyUnitSelection(&self, unitId: UnitID) -> tresult

source

unsafe fn notifyProgramListChange( &self, listId: ProgramListID, programIndex: int32 ) -> tresult

Implementors§