]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - host.h
Fix file paths.
[xonotic/darkplaces.git] / host.h
diff --git a/host.h b/host.h
index c87c3649edf86715e69226558e6e0028fd877718..4521f72b7983a50c57b60b436520613e91222f2e 100644 (file)
--- a/host.h
+++ b/host.h
@@ -16,7 +16,7 @@ typedef enum host_state_e
        host_active
 } host_state_t;
 
-typedef struct host_s
+typedef struct host_static_s
 {
        jmp_buf abortframe;
        int state;
@@ -36,10 +36,11 @@ typedef struct host_s
                qbool (*CL_Intermission)(void); // Quake compatibility
                void (*CL_SendCvar)(struct cmd_state_s *);
                void (*SV_SendCvar)(struct cmd_state_s *);
+               void (*SV_Shutdown)(void);
        } hook;
-} host_t;
+} host_static_t;
 
-extern host_t host;
+extern host_static_t host;
 
 void Host_Main(void);
 void Host_Shutdown(void);