X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=client.h;h=fdf1a7881f5b1c9316056c65ff514c93feaaeee5;hb=1ee2c5de852baeeb43e384bdace17f687d47e7e0;hp=5335bb0a4cd958eb4fab19bdfd75fb85fcebb987;hpb=d192fabc74fe10ad9f173418e765b189278a1075;p=xonotic%2Fdarkplaces.git diff --git a/client.h b/client.h index 5335bb0a..fdf1a788 100644 --- a/client.h +++ b/client.h @@ -577,7 +577,7 @@ typedef struct client_static_s int demonum; // list of demos in loop char demos[MAX_DEMOS][MAX_DEMONAME]; - // the actively playing demo (set by CL_PlayDemo_f) + // the actively playing demo (set by CL_PlayDemo) char demoname[MAX_QPATH]; // demo recording info must be here, because record is started before @@ -1223,7 +1223,8 @@ void CL_StartVideo(void); void CL_EstablishConnection(const char *host, int firstarg); -void CL_Disconnect (void); +void CL_Disconnect(void); +void CL_DisconnectEx(qbool kicked, const char *reason, ... ); void CL_Disconnect_f(cmd_state_t *cmd); void CL_UpdateRenderEntity(entity_render_t *ent); @@ -1299,6 +1300,7 @@ void CL_WriteDemoMessage(sizebuf_t *mesage); void CL_CutDemo(unsigned char **buf, fs_offset_t *filesize); void CL_PasteDemo(unsigned char **buf, fs_offset_t *filesize); +void CL_PlayDemo(const char *demo); void CL_NextDemo(void); void CL_Stop_f(cmd_state_t *cmd); void CL_Record_f(cmd_state_t *cmd);