diff options
Diffstat (limited to 'src/utils/virtfs.h')
-rw-r--r-- | src/utils/virtfs.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/utils/virtfs.h b/src/utils/virtfs.h index 8cbfe8c51..66149c903 100644 --- a/src/utils/virtfs.h +++ b/src/utils/virtfs.h @@ -57,8 +57,16 @@ namespace VirtFs void *const buffer, const uint32_t objSize, const uint32_t objCount); - void close(PHYSFS_file *const file); + int64_t write(PHYSFS_File *const file, + const void *const buffer, + const uint32_t objSize, + const uint32_t objCount); + int close(PHYSFS_file *const file); int64_t fileLength(PHYSFS_File *const file); + int64_t tell(PHYSFS_File *const file); + int seek(PHYSFS_File *const file, + const uint64_t pos); + int eof(PHYSFS_File *const file); } // namespace PhysFs extern const char *dirSeparator; |