]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sv_demo.h
keysym2ucs: Delete. Was only used for the GLX client which no longer exists
[xonotic/darkplaces.git] / sv_demo.h
index ad26d9d4c3105b9503317c167c9b3cc4d8f96e32..fed19257654d7c0555a42f078e4a6210c00599c3 100644 (file)
--- a/sv_demo.h
+++ b/sv_demo.h
@@ -1,9 +1,13 @@
 #ifndef SV_DEMO_H
 #define SV_DEMO_H
 
-void SV_StartDemoRecording(client_t *client, const char *filename, int forcetrack);
-void SV_WriteDemoMessage(client_t *client, sizebuf_t *sendbuffer);
-void SV_StopDemoRecording(client_t *client);
-void SV_WriteNetnameIntoDemo(client_t *client);
+#include "qtypes.h"
+struct sizebuf_s;
+struct client_s;
+
+void SV_StartDemoRecording(struct client_s *client, const char *filename, int forcetrack);
+void SV_WriteDemoMessage(struct client_s *client, struct sizebuf_s *sendbuffer, qbool clienttoserver);
+void SV_StopDemoRecording(struct client_s *client);
+void SV_WriteNetnameIntoDemo(struct client_s *client);
 
 #endif