| 1286 | /* ---------- Option handlers ---------- */ |
| 1287 | |
| 1288 | void OPLSetTimerHandler(FM_OPL *OPL,OPL_TIMERHANDLER TimerHandler,int channelOffset) |
| 1289 | { |
| 1290 | OPL->TimerHandler = TimerHandler; |
| 1291 | OPL->TimerParam = channelOffset; |
| 1292 | } |
| 1293 | void OPLSetIRQHandler(FM_OPL *OPL,OPL_IRQHANDLER IRQHandler,int param) |
| 1294 | { |
| 1295 | OPL->IRQHandler = IRQHandler; |
nothing calls this directly
no outgoing calls
no test coverage detected