| 405 | } |
| 406 | |
| 407 | bool xcw_native_input_send_key(void *handle, uint16_t key_code, |
| 408 | uint32_t modifiers, char **error_message) { |
| 409 | (void)handle; |
| 410 | (void)key_code; |
| 411 | (void)modifiers; |
| 412 | return xcw_unsupported(error_message); |
| 413 | } |
| 414 | |
| 415 | bool xcw_native_input_send_key_event(void *handle, uint16_t key_code, |
| 416 | bool down, char **error_message) { |
no test coverage detected