| 392 | } |
| 393 | |
| 394 | bool xcw_native_input_send_multitouch(void *handle, double x1, double y1, |
| 395 | double x2, double y2, |
| 396 | const char *phase, |
| 397 | char **error_message) { |
| 398 | (void)handle; |
| 399 | (void)x1; |
| 400 | (void)y1; |
| 401 | (void)x2; |
| 402 | (void)y2; |
| 403 | (void)phase; |
| 404 | return xcw_unsupported(error_message); |
| 405 | } |
| 406 | |
| 407 | bool xcw_native_input_send_key(void *handle, uint16_t key_code, |
| 408 | uint32_t modifiers, char **error_message) { |
no test coverage detected