| 172 | } |
| 173 | |
| 174 | RTC_API void rtcSetDeviceErrorFunction(RTCDevice hdevice, RTCErrorFunction error, void* userPtr) |
| 175 | { |
| 176 | Device* device = (Device*) hdevice; |
| 177 | RTC_CATCH_BEGIN; |
| 178 | RTC_TRACE(rtcSetDeviceErrorFunction); |
| 179 | RTC_VERIFY_HANDLE(hdevice); |
| 180 | device->setErrorFunction(error, userPtr); |
| 181 | RTC_CATCH_END(device); |
| 182 | } |
| 183 | |
| 184 | RTC_API void rtcSetDeviceMemoryMonitorFunction(RTCDevice hdevice, RTCMemoryMonitorFunction memoryMonitor, void* userPtr) |
| 185 | { |
no test coverage detected