]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.h
Added darkplaces-osx-sdl launch script, this has been simplified since
[xonotic/darkplaces.git] / fs.h
diff --git a/fs.h b/fs.h
index 7ffba78eab5c028eaa756bec7be349dcdeb4fdcd..657f6440a5a721a16bb03d868e4cdec1b1c911a2 100644 (file)
--- a/fs.h
+++ b/fs.h
@@ -129,11 +129,14 @@ int FS_SysFileType (const char *filename);                // only look for files outside of pa
 qboolean FS_FileExists (const char *filename);         // the file can be into a package
 qboolean FS_SysFileExists (const char *filename);      // only look for files outside of packages
 
-void FS_mkdir (const char *path);
-
 unsigned char *FS_Deflate(const unsigned char *data, size_t size, size_t *deflated_size, int level, mempool_t *mempool);
 unsigned char *FS_Inflate(const unsigned char *data, size_t size, size_t *inflated_size, mempool_t *mempool);
 
 qboolean FS_HasZlib(void);
 
+void FS_Init_SelfPack(void);
+void FS_Init(void);
+void FS_Shutdown(void);
+void FS_Init_Commands(void);
+
 #endif