diff options
Diffstat (limited to 'source/files.h')
-rw-r--r-- | source/files.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/files.h b/source/files.h index 319e5e7..6fdf983 100644 --- a/source/files.h +++ b/source/files.h @@ -107,8 +107,8 @@ size_t FS_ReadLine( fileHandle_t f, char *buffer, int size ); void FS_Flush( fileHandle_t f ); -int FS_Tell( fileHandle_t f ); -int FS_RawTell( fileHandle_t f ); +size_t FS_Tell( fileHandle_t f ); +qboolean FS_Seek( fileHandle_t f, size_t offset ); size_t FS_GetFileLength( fileHandle_t f ); |