Fix build

This commit is contained in:
pancake 2016-03-25 00:25:56 +01:00
parent 2cf64fbb8a
commit 32857e5fcd
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ static int __system(RIO *io, RIODesc *fd, const char *cmd) {
" =!:<bochscmd> - Send a bochs command.\n"
" =!dobreak - pause bochs.\n");
lprintf ("io_system: Enviando comando bochs\n");
SendCommand_ (desc, &cmd[1], true);
bochs_send_cmd (desc, &cmd[1], true);
io->cb_printf ("%s\n", desc->data);
return 1;
} else if (!strncmp (cmd, "dobreak", 7)) {

View File

@ -31,7 +31,7 @@ bool WaitForReply_(libbochs_t *b);
int RunRemoteThread_(libbochs_t* b, const ut8* lpBuffer, ut32 dwSize, int a4, ut32 *lpExitCode);
void ResetBuffer_(libbochs_t* b);
bool CommandStop_(libbochs_t * b);
void SendCommand_(libbochs_t* b, const char * comando, bool bWait);
void bochs_send_cmd(libbochs_t* b, const char * comando, bool bWait);
int bochs_read_(libbochs_t* b, ut64 addr, int count, ut8* buf);
void bochs_close_(libbochs_t* b);
bool bochs_open_(libbochs_t* b, const char *rutaBochs, const char *rutaConfig);