]> 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 80b5aa744e61e5bb196284de58dfebfbcaea8786..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;
@@ -34,13 +34,13 @@ typedef struct host_s
                void (*Disconnect)(void);
                void (*ToggleMenu)(void);
                qbool (*CL_Intermission)(void); // Quake compatibility
-               qbool (*SV_CanSave)(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);