]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.h
changed main() argv parameter to non-const, and casting it to const on assignment...
[xonotic/darkplaces.git] / fs.h
diff --git a/fs.h b/fs.h
index 05b869ca1ac41bad6e293134ab0c484f9af7d881..79115351e86c9a2c666e8b5fd3ce3566a8e0d579 100644 (file)
--- a/fs.h
+++ b/fs.h
@@ -22,8 +22,8 @@
                Boston, MA  02111-1307, USA
 */
 
-#ifndef QUAKEIO_H
-#define QUAKEIO_H
+#ifndef FS_H
+#define FS_H
 
 
 // ------ Types ------ //
@@ -49,7 +49,9 @@ int FS_Close (qfile_t* file);
 size_t FS_Write (qfile_t* file, const void* data, size_t datasize);
 size_t FS_Read (qfile_t* file, void* buffer, size_t buffersize);
 int FS_Flush (qfile_t* file);
-int FS_Printf (qfile_t* file, const char* format, ...);
+int FS_Print(qfile_t* file, const char *msg);
+int FS_Printf(qfile_t* file, const char* format, ...);
+int FS_VPrintf(qfile_t* file, const char* format, va_list ap);
 int FS_Getc (qfile_t* file);
 int FS_Seek (qfile_t* file, long offset, int whence);
 long FS_Tell (qfile_t* file);
@@ -57,14 +59,26 @@ char *FS_Gets (qfile_t* file, char* buffer, int buffersize);
 char *FS_Getline (qfile_t *file);  // DO NOT FREE the returned buffer
 int FS_Eof (qfile_t* file);
 
-qbyte *FS_LoadFile (const char *path, qboolean quiet);
+typedef struct fssearch_s
+{
+       int numfilenames;
+       char **filenames;
+       // array of filenames
+       char *filenamesbuffer;
+}
+fssearch_t;
+
+fssearch_t *FS_Search(const char *pattern, int caseinsensitive, int quiet);
+void FS_FreeSearch(fssearch_t *search);
+
+qbyte *FS_LoadFile (const char *path, mempool_t *pool, qboolean quiet);
 qboolean FS_WriteFile (const char *filename, void *data, int len);
 
 
 // ------ Other functions ------ //
 
-void FS_StripExtension (const char *in, char *out);
-void FS_DefaultExtension (char *path, const char *extension);
+void FS_StripExtension (const char *in, char *out, size_t size_out);
+void FS_DefaultExtension (char *path, const char *extension, size_t size_path);
 
 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