summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/disk_archive.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-21 07:45:00 +0100
committerbunnei <bunneidev@gmail.com>2014-12-21 07:45:00 +0100
commit572ce043c291f46f50d97f68f4df4f6f93e72035 (patch)
tree79a59fa757424e053b029b6162937551a03d1e25 /src/core/file_sys/disk_archive.h
parentMerge pull request #323 from lioncash/saddsub (diff)
parentAdded CreateFile to the FS_USER service (diff)
downloadyuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.tar
yuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.tar.gz
yuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.tar.bz2
yuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.tar.lz
yuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.tar.xz
yuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.tar.zst
yuzu-572ce043c291f46f50d97f68f4df4f6f93e72035.zip
Diffstat (limited to 'src/core/file_sys/disk_archive.h')
-rw-r--r--src/core/file_sys/disk_archive.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/file_sys/disk_archive.h b/src/core/file_sys/disk_archive.h
index 778c83953..eaec435d2 100644
--- a/src/core/file_sys/disk_archive.h
+++ b/src/core/file_sys/disk_archive.h
@@ -28,6 +28,7 @@ public:
bool DeleteFile(const FileSys::Path& path) const override;
bool RenameFile(const FileSys::Path& src_path, const FileSys::Path& dest_path) const override;
bool DeleteDirectory(const FileSys::Path& path) const override;
+ ResultCode CreateFile(const Path& path, u32 size) const override;
bool CreateDirectory(const Path& path) const override;
bool RenameDirectory(const FileSys::Path& src_path, const FileSys::Path& dest_path) const override;
std::unique_ptr<DirectoryBackend> OpenDirectory(const Path& path) const override;