summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_layered.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vfs: Remove InterpretAsDirectory and related functionsZach Hilman2018-10-191-3/+0
| | | | When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
* vfs_concat/vfs_layered: Remove friend declarations from ConcatenatedVfsFileLioncash2018-09-261-5/+3
| | | | | | Given these are only added to the class to allow those functions to access the private constructor, it's a better approach to just make them static functions in the interface, to make the dependency explicit.
* fsmitm: Cleanup and modernize fsmitm portZach Hilman2018-09-241-0/+2
|
* vfs_layered: Add LayeredVfsDirectoryZach Hilman2018-09-221-0/+50
Reads multiple dirs through as if a waterfall.