| 372 | } |
| 373 | |
| 374 | bool xcw_native_input_send_touch(void *handle, double x, double y, |
| 375 | const char *phase, char **error_message) { |
| 376 | (void)handle; |
| 377 | (void)x; |
| 378 | (void)y; |
| 379 | (void)phase; |
| 380 | return xcw_unsupported(error_message); |
| 381 | } |
| 382 | |
| 383 | bool xcw_native_input_send_edge_touch(void *handle, double x, double y, |
| 384 | const char *phase, uint32_t edge, |
no test coverage detected