aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/archive_backend.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-12-20 12:43:50 -0300
committerGravatar archshift <admin@archshift.com>2014-12-21 02:21:49 -0300
commit0625dd09eaf9158696a9255cb6c6b2bd73122301 (patch)
tree752f0e9bd60403c1cbb0c3a1ba25f60c9a6925f2 /src/core/file_sys/archive_backend.h
parentc2753d37a743e48548a6c792a0ec2278591f79a0 (diff)
Added CreateFile to the FS_USER service
Tested with hwtests.
Diffstat (limited to 'src/core/file_sys/archive_backend.h')
-rw-r--r--src/core/file_sys/archive_backend.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_backend.h b/src/core/file_sys/archive_backend.h
index 18c31488..1b510b69 100644
--- a/src/core/file_sys/archive_backend.h
+++ b/src/core/file_sys/archive_backend.h
@@ -200,6 +200,14 @@ public:
virtual bool DeleteDirectory(const FileSys::Path& path) const = 0;
/**
+ * 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
+ */
+ virtual ResultCode CreateFile(const Path& path, u32 size) const = 0;
+
+ /**
* Create a directory specified by its path
* @param path Path relative to the archive
* @return Whether the directory could be created