X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=sv_demo.h;h=fed19257654d7c0555a42f078e4a6210c00599c3;hb=cd51987a9fd5813e15dfb442b7ded432173390f9;hp=65c19248074290e3a412e567f228408d53712212;hpb=ffffe657727890724cd57beecc8d34cf33154746;p=xonotic%2Fdarkplaces.git 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