X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sv_demo.h;h=fed19257654d7c0555a42f078e4a6210c00599c3;hp=65c19248074290e3a412e567f228408d53712212;hb=1f7645e73c1f099c486c716dbd21dda6d55297ea;hpb=ffffe657727890724cd57beecc8d34cf33154746 diff --git a/sv_demo.h b/sv_demo.h index 65c19248..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, qboolean 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