| 132 | } |
| 133 | |
| 134 | char *xcw_native_create_simulator(const char *name, |
| 135 | const char *device_type_identifier, |
| 136 | const char *runtime_identifier, |
| 137 | const char *paired_watch_name, |
| 138 | const char *paired_watch_device_type_identifier, |
| 139 | const char *paired_watch_runtime_identifier, |
| 140 | char **error_message) { |
| 141 | (void)name; |
| 142 | (void)device_type_identifier; |
| 143 | (void)runtime_identifier; |
| 144 | (void)paired_watch_name; |
| 145 | (void)paired_watch_device_type_identifier; |
| 146 | (void)paired_watch_runtime_identifier; |
| 147 | xcw_unsupported(error_message); |
| 148 | return NULL; |
| 149 | } |
| 150 | |
| 151 | bool xcw_native_boot_simulator(const char *udid, char **error_message) { |
| 152 | (void)udid; |
no test coverage detected