| 487 | } |
| 488 | |
| 489 | bool xcw_native_session_send_multitouch(void *handle, double x1, double y1, |
| 490 | double x2, double y2, |
| 491 | const char *phase, |
| 492 | char **error_message) { |
| 493 | (void)handle; |
| 494 | (void)x1; |
| 495 | (void)y1; |
| 496 | (void)x2; |
| 497 | (void)y2; |
| 498 | (void)phase; |
| 499 | return xcw_unsupported(error_message); |
| 500 | } |
| 501 | |
| 502 | bool xcw_native_session_send_key(void *handle, uint16_t key_code, |
| 503 | uint32_t modifiers, char **error_message) { |
no test coverage detected