summaryrefslogtreecommitdiff
path: root/libpcsxcore/gdb_server.h
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2020-05-23 01:06:07 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2020-05-23 18:05:53 +0200
commit470da05658a97a51bd2ad2db7834bcc13dd995fd (patch)
treef2c85327bfe13813098446ff91a61b725116fa86 /libpcsxcore/gdb_server.h
parentaea565d558f929729c0cb889f9c3296f2f487d0d (diff)
downloadpcsxr-470da05658a97a51bd2ad2db7834bcc13dd995fd.tar.gz
Started implementing GDB server
Diffstat (limited to 'libpcsxcore/gdb_server.h')
-rw-r--r--libpcsxcore/gdb_server.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libpcsxcore/gdb_server.h b/libpcsxcore/gdb_server.h
new file mode 100644
index 00000000..d0e925a6
--- /dev/null
+++ b/libpcsxcore/gdb_server.h
@@ -0,0 +1,10 @@
+#ifndef GDB_SERVER_H
+#define GDB_SERVER_H
+
+void GdbStartServer(void);
+void GdbStopServer(void);
+void GdbServerProcessDebug(void);
+void GdbServerVSync(void);
+int GdbServerRunning(void);
+
+#endif /* GDB_SERVER_H */