This commit is contained in:
2022-04-14 10:34:32 +02:00
parent 10d4ad6fd5
commit 85fa45201e
2 changed files with 40 additions and 0 deletions

1
external/fs.h vendored
View File

@ -26,5 +26,6 @@ Result FS_RenameDir(FS_Archive archive, const char *old_dirname, const char *new
Result FS_Read(FS_Archive archive, const char *path, u64 size, void *buf);
Result FS_Write(FS_Archive archive, const char *path, const void *buf, u32 size);
char *FS_GetFileTimestamp(const char *path);
Result openFile(Handle* fileHandle, const char * path, bool write);
#endif