tio fixes

This commit is contained in:
TuxSH
2019-04-27 23:23:36 +02:00
parent 54eeb97b24
commit 9b3cc5391b
4 changed files with 71 additions and 32 deletions

View File

@@ -38,6 +38,7 @@ typedef struct
} IFile;
Result IFile_Open(IFile *file, FS_ArchiveID archiveId, FS_Path archivePath, FS_Path filePath, u32 flags);
Result IFile_OpenFromArchive(IFile *file, FS_Archive archive, FS_Path filePath, u32 flags);
Result IFile_Close(IFile *file);
Result IFile_GetSize(IFile *file, u64 *size);
Result IFile_Read(IFile *file, u64 *total, void *buffer, u32 len);