summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/ivfc_archive.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* FileSys: remove Open from FileBackendwwylele2016-11-191-3/+0
| | | | Same as directory, file shouldn't expose Open either.
* FileSys: remove Open from DirectoryBackendwwylele2016-11-191-3/+0
| | | | Open should not be an interface exposed by Directory because it is the Archive thats implement the methed to open the directory. The service API of 3DS also implies this - Open is not a function of directory service, but is of FS main service
* FileSys: make Archive interfaces return error codewwylele2016-11-011-7/+7
| | | | and make the mode parameter a reference since it is a BitField union
* fs: implement DeleteDirectoryRecursivelywwylele2016-10-021-0/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-2/+0
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-6/+3
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-9/+23
|
* HLE/FS: Return the proper error codes when opening files.Subv2016-03-201-2/+2
|
* HLE/FS: Return the proper error codes on file Read/Write operations.Subv2016-03-201-2/+2
| | | | These operations are limited by the open flags specified while opening the file.
* HLE/FS: Corrected the error codes for DeleteFileSubv2016-03-201-1/+1
|
* HLE/FS: FS::CreateFile takes an u64 for the file size.Subv2016-03-201-1/+1
|
* Implement FS_User::GetFreeBytesarchshift2015-10-281-0/+1
|
* Archive: Correct a few incorrect types in function signaturesYuri Kunde Schlesner2015-07-141-4/+4
| | | | Buffer lengths should be size_t, and file offsets should be u64.
* FS: Stream RomFS from file instead of loading all of it to memorycondut2015-07-141-4/+11
|
* Core: Cleanup file_sys includes.Emmanuel Gil Peyrot2015-06-281-1/+3
|
* FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner2015-05-071-0/+2
|
* FS: Allow multiple instances of the same archive type to be open at onceYuri Kunde Schlesner2015-02-101-6/+7
|
* SaveDataCheck: Remove unneeded constructor from a classSubv2015-01-031-2/+0
|
* Archives: Added some documentation to IVFCArchiveSubv2015-01-031-0/+5
|
* Archives: Reduced duplicate code in RomFS and SaveCheck.Subv2015-01-031-0/+63
Fixed a few warnings and cleaned up the code