| 125 | } |
| 126 | |
| 127 | void uae_ShellExecute(TCHAR *command) |
| 128 | { |
| 129 | TCHAR *cmd = my_strdup(command); |
| 130 | uae_nativesem_wait(); |
| 131 | write_comm_pipe_int(&native2amiga_pending, 5, 0); |
| 132 | write_comm_pipe_pvoid(&native2amiga_pending, cmd, 1); |
| 133 | do_uae_int_requested(); |
| 134 | uae_nativesem_post(); |
| 135 | } |
| 136 | |
| 137 | void uae_ShellExecute2(uae_u32 id) |
| 138 | { |
no test coverage detected