| 291 | } |
| 292 | |
| 293 | bool xcw_native_send_button(const char *udid, const char *button_name, |
| 294 | bool pressed, bool has_usage, uint32_t usage_page, |
| 295 | uint32_t usage, char **error_message) { |
| 296 | (void)udid; |
| 297 | (void)button_name; |
| 298 | (void)pressed; |
| 299 | (void)has_usage; |
| 300 | (void)usage_page; |
| 301 | (void)usage; |
| 302 | return xcw_unsupported(error_message); |
| 303 | } |
| 304 | |
| 305 | bool xcw_native_rotate_crown(const char *udid, double delta, |
| 306 | char **error_message) { |
no test coverage detected