X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=fs.h;h=c65b8525808f4496f0fc876a080c919ff896b2c0;hp=7e9192a593e1d78c6440669940f04b60611fab06;hb=41badc2496f791cff934560d91f4c432c3f95b48;hpb=11e05215e5f3cee630f54b9836dab1b36b5b4ffc diff --git a/fs.h b/fs.h index 7e9192a5..c65b8525 100644 --- a/fs.h +++ b/fs.h @@ -30,13 +30,20 @@ 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) +#else +typedef long long fs_offset_t; +#endif + + // ------ Variables ------ // extern char fs_gamedir [MAX_OSPATH]; extern char fs_basedir [MAX_OSPATH]; -extern size_t fs_filesize; // set by FS_Open (in "read" mode) and FS_LoadFile // ------ Main functions ------ // @@ -44,17 +51,19 @@ extern size_t fs_filesize; // set by FS_Open (in "read" mode) and FS_LoadFile // IMPORTANT: the file path is automatically prefixed by the current game directory for // each file created by FS_WriteFile, or opened in "write" or "append" mode by FS_Open +qboolean FS_AddPack(const char *pakfile, qboolean *already_loaded, qboolean keep_plain_dirs); // already_loaded may be NULL if caller does not care +const char *FS_WhichPack(const char *filename); qfile_t *FS_Open (const char* filepath, const char* mode, qboolean quiet, qboolean nonblocking); 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); +fs_offset_t FS_Write (qfile_t* file, const void* data, size_t datasize); +fs_offset_t FS_Read (qfile_t* file, void* buffer, size_t buffersize); 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_UnGetc (qfile_t* file, unsigned char c); -int FS_Seek (qfile_t* file, long offset, int whence); -size_t FS_Tell (qfile_t* file); +int FS_Seek (qfile_t* file, fs_offset_t offset, int whence); +fs_offset_t FS_Tell (qfile_t* file); void FS_Purge (qfile_t* file); typedef struct fssearch_s @@ -69,8 +78,8 @@ 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, size_t len); +unsigned char *FS_LoadFile (const char *path, mempool_t *pool, qboolean quiet, fs_offset_t *filesizepointer); +qboolean FS_WriteFile (const char *filename, void *data, fs_offset_t len); // ------ Other functions ------ //