![]() |
Home |
|
Function RTRemoveSharedIRQHandlerRTRemoveSharedIRQHandler uninstalls a high level interrupt handler previously installed with RTInstallSharedIRQHandler: typedef void (RTTAPI * RTIntHandler)(void); void RTRemoveSharedIRQHandler(int IRQ, RTIntHandler HighLevelHandler); It is implemented through: RTRemoveSharedIRQHandlerEx(IRQ, (RTIntHandlerEx) HighLevelHandler, (void*)-1); Please see the documentation of RTRemoveSharedIRQHandlerEx for details.
|