| 466 | } |
| 467 | |
| 468 | bool xcw_native_session_send_touch(void *handle, double x, double y, |
| 469 | const char *phase, |
| 470 | char **error_message) { |
| 471 | (void)handle; |
| 472 | (void)x; |
| 473 | (void)y; |
| 474 | (void)phase; |
| 475 | return xcw_unsupported(error_message); |
| 476 | } |
| 477 | |
| 478 | bool xcw_native_session_send_edge_touch(void *handle, double x, double y, |
| 479 | const char *phase, uint32_t edge, |
no test coverage detected