| 283 | } |
| 284 | |
| 285 | bool xcw_native_press_button(const char *udid, const char *button_name, |
| 286 | uint32_t duration_ms, char **error_message) { |
| 287 | (void)udid; |
| 288 | (void)button_name; |
| 289 | (void)duration_ms; |
| 290 | return xcw_unsupported(error_message); |
| 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, |
no test coverage detected