gdb-server/include/server.h

11 lines
223 B
C
Raw Normal View History

2024-10-08 02:00:01 +00:00
#ifndef RDBSERVER_SERVER_H_
#define RDBSERVER_SERVER_H_
#include <cmdbuf.h>
2024-10-08 02:18:42 +00:00
#include <response.h>
2024-10-08 02:00:01 +00:00
#include <stdbool.h>
#include <vb.h>
2024-10-08 02:18:42 +00:00
int handle_command(RdbResponse *res, CommandBuf *cmd, VB *sim, bool *running);
2024-10-08 02:00:01 +00:00
#endif