mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 12:05:45 +00:00
HLE/FS: Return the proper error codes when opening files.
This commit is contained in:
parent
a871f0b7d0
commit
6983167205
7 changed files with 43 additions and 28 deletions
|
@ -76,9 +76,9 @@ public:
|
|||
* Open a file specified by its path, using the specified mode
|
||||
* @param path Path relative to the archive
|
||||
* @param mode Mode to open the file with
|
||||
* @return Opened file, or nullptr
|
||||
* @return Opened file, or error code
|
||||
*/
|
||||
virtual std::unique_ptr<FileBackend> OpenFile(const Path& path, const Mode mode) const = 0;
|
||||
virtual ResultVal<std::unique_ptr<FileBackend>> OpenFile(const Path& path, const Mode mode) const = 0;
|
||||
|
||||
/**
|
||||
* Delete a file specified by its path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue