X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=sv_demo.h;h=fed19257654d7c0555a42f078e4a6210c00599c3;hb=4c6cb7882855468365644ac65b6eb86a3e82a812;hp=8dbbd65f700ebec6e10be7e106308dcbd7faf606;hpb=0a05c446ba26bd5897645a37ceec8646c5bc93eb;p=xonotic%2Fdarkplaces.git diff --git a/sv_demo.h b/sv_demo.h index 8dbbd65f..fed19257 100644 --- 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, qbool clienttoserver); -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