mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 01:35:46 +00:00
FS: Implement DiskFileSystem's OpenDirectory interface.
This commit is contained in:
parent
7de15c22f3
commit
bf1c4bf16c
5 changed files with 19 additions and 6 deletions
|
@ -150,7 +150,8 @@ public:
|
|||
* @param path Path relative to the archive
|
||||
* @return Opened directory, or error code
|
||||
*/
|
||||
virtual ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(const Path& path) const = 0;
|
||||
virtual ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(
|
||||
const std::string& path) const = 0;
|
||||
|
||||
/**
|
||||
* Get the free space
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue