mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 21:29:49 +00:00
e6f2cd0b2a
$ git grep ' $' | grep -v ^test/ | cut -d : -f 1 | sort -u > /tmp/trailing $ for a in `cat /tmp/trailing` ; do sed -i -e 's/ *$//' $a ; done
62 lines
1.3 KiB
C
62 lines
1.3 KiB
C
/*! \file */
|
|
#ifndef LIBBOCHS_H
|
|
#define LIBBOCHS_H
|
|
|
|
#include <r_util.h>
|
|
|
|
#if __WINDOWS__
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
typedef struct libbochs_t {
|
|
char *data;
|
|
int punteroBuffer;
|
|
int sizeSend;
|
|
#if __WINDOWS__
|
|
HANDLE hReadPipeIn;
|
|
HANDLE hReadPipeOut;
|
|
HANDLE hWritePipeIn;
|
|
HANDLE hWritePipeOut;
|
|
HANDLE ghWriteEvent;
|
|
PROCESS_INFORMATION processInfo;
|
|
STARTUPINFO info;
|
|
#else
|
|
int hReadPipeIn;
|
|
int hReadPipeOut;
|
|
int hWritePipeIn;
|
|
int hWritePipeOut;
|
|
int pid;
|
|
|
|
#endif
|
|
bool isRunning;
|
|
} libbochs_t;
|
|
|
|
|
|
//DWORD WINAPI MyThLector_(LPVOID lpParam)
|
|
//DWORD WINAPI MyThEscritor_(LPVOID lpParam)
|
|
bool bochs_wait(libbochs_t *b);
|
|
void bochs_reset_buffer(libbochs_t* b);
|
|
bool bochs_cmd_stop(libbochs_t * b);
|
|
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);
|
|
|
|
#define ENABLE_DEBUG 0
|
|
#if ENABLE_DEBUG
|
|
#define lprintf(x,y...) { FILE *fd;fd=fopen("bochs.io.log", "a"); if (fd) {fprintf(fd,x,##y);fflush(fd);fclose(fd); }}
|
|
#else
|
|
#ifdef _MSC_VER
|
|
#define lprintf(x,...) {}
|
|
#else
|
|
#define lprintf(x,y...) {}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/*!
|
|
int gdbr_remove_bp(libgdbr_t* g, ut64 address);
|
|
int gdbr_remove_hwbp(libgdbr_t* g, ut64 address);
|
|
*/
|
|
#endif
|