| 182 | } |
| 183 | |
| 184 | RTC_API void rtcSetDeviceMemoryMonitorFunction(RTCDevice hdevice, RTCMemoryMonitorFunction memoryMonitor, void* userPtr) |
| 185 | { |
| 186 | Device* device = (Device*) hdevice; |
| 187 | RTC_CATCH_BEGIN; |
| 188 | RTC_TRACE(rtcSetDeviceMemoryMonitorFunction); |
| 189 | device->setMemoryMonitorFunction(memoryMonitor, userPtr); |
| 190 | RTC_CATCH_END(device); |
| 191 | } |
| 192 | |
| 193 | RTC_API RTCBuffer rtcNewBuffer(RTCDevice hdevice, size_t byteSize) |
| 194 | { |
no test coverage detected