| 256 | } |
| 257 | |
| 258 | bool xcw_native_send_touch(const char *udid, double x, double y, |
| 259 | const char *phase, char **error_message) { |
| 260 | (void)udid; |
| 261 | (void)x; |
| 262 | (void)y; |
| 263 | (void)phase; |
| 264 | return xcw_unsupported(error_message); |
| 265 | } |
| 266 | |
| 267 | bool xcw_native_send_key(const char *udid, uint16_t key_code, |
| 268 | uint32_t modifiers, char **error_message) { |
no test coverage detected