| 381 | } |
| 382 | |
| 383 | bool xcw_native_input_send_edge_touch(void *handle, double x, double y, |
| 384 | const char *phase, uint32_t edge, |
| 385 | char **error_message) { |
| 386 | (void)handle; |
| 387 | (void)x; |
| 388 | (void)y; |
| 389 | (void)phase; |
| 390 | (void)edge; |
| 391 | return xcw_unsupported(error_message); |
| 392 | } |
| 393 | |
| 394 | bool xcw_native_input_send_multitouch(void *handle, double x1, double y1, |
| 395 | double x2, double y2, |
no test coverage detected