]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.h
implemented vid_samples cvar (antialiasing samples per pixel)
[xonotic/darkplaces.git] / fs.h
diff --git a/fs.h b/fs.h
index 9ed0b5114cf2c22c236758cf586f9221634f8ce0..8f31b7cc9f0597a5c5d38cc8ed04cfbffb48ef9e 100644 (file)
--- a/fs.h
+++ b/fs.h
@@ -31,8 +31,8 @@
 typedef struct qfile_s qfile_t;
 
 #ifdef WIN32
-typedef long fs_offset_t; // 32bit
-//typedef _int64 fs_offset_t; // 64bit (lots of warnings, and lseek/read/write still don't take 64bit on win64)
+//typedef long fs_offset_t; // 32bit
+typedef __int64 fs_offset_t; // 64bit (lots of warnings, and read/write still don't take 64bit on win64)
 #else
 typedef long long fs_offset_t;
 #endif
@@ -100,6 +100,12 @@ qboolean FS_WriteFile (const char *filename, void *data, fs_offset_t len);
 void FS_StripExtension (const char *in, char *out, size_t size_out);
 void FS_DefaultExtension (char *path, const char *extension, size_t size_path);
 
+#define FS_FILETYPE_NONE 0
+#define FS_FILETYPE_FILE 1
+#define FS_FILETYPE_DIRECTORY 2
+int FS_FileType (const char *filename);                // the file can be into a package
+int FS_SysFileType (const char *filename);             // only look for files outside of packages
+
 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