mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-17 11:27:57 +00:00
Added CreateFile to the FS_USER service
Tested with hwtests.
This commit is contained in:
parent
c2753d37a7
commit
0625dd09ea
8 changed files with 91 additions and 1 deletions
|
@ -53,6 +53,14 @@ public:
|
|||
*/
|
||||
bool DeleteDirectory(const FileSys::Path& path) const override;
|
||||
|
||||
/**
|
||||
* Create a file specified by its path
|
||||
* @param path Path relative to the Archive
|
||||
* @param size The size of the new file, filled with zeroes
|
||||
* @return File creation result code
|
||||
*/
|
||||
ResultCode CreateFile(const Path& path, u32 size) const override;
|
||||
|
||||
/**
|
||||
* Create a directory specified by its path
|
||||
* @param path Path relative to the archive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue