| 291 | } |
| 292 | |
| 293 | ULONG PresentMonProvider_MeasuredInput( |
| 294 | PresentMonProvider* ctxt, |
| 295 | PresentMonProvider_InputType inputType, |
| 296 | uint64_t inputQPCTime) |
| 297 | { |
| 298 | PRESENTMONPROVIDER_ASSERT(ctxt != nullptr); |
| 299 | PRESENTMONPROVIDER_ASSERT(IsValid(inputType)); |
| 300 | |
| 301 | return WriteEvent(ctxt, Event_MeasuredInput, inputQPCTime, |
| 302 | (uint8_t) inputType); |
| 303 | } |
| 304 | |
| 305 | ULONG PresentMonProvider_MeasuredScreenChange( |
| 306 | PresentMonProvider* ctxt, |
nothing calls this directly
no test coverage detected