summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/archive.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-10-04 02:34:56 +0200
committerGitHub <noreply@github.com>2016-10-04 02:34:56 +0200
commit7ed97fb89aa8cfe39a36f1958de61e69b2e5026c (patch)
tree779a58d37d20674d97b648b9546413c1ce8f7d6a /src/core/hle/service/fs/archive.h
parentMerge pull request #2103 from wwylele/gpu-reg-cleanup (diff)
parentfs: clean up log format (diff)
downloadyuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.tar
yuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.tar.gz
yuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.tar.bz2
yuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.tar.lz
yuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.tar.xz
yuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.tar.zst
yuzu-7ed97fb89aa8cfe39a36f1958de61e69b2e5026c.zip
Diffstat (limited to 'src/core/hle/service/fs/archive.h')
-rw-r--r--src/core/hle/service/fs/archive.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/fs/archive.h b/src/core/hle/service/fs/archive.h
index 533be34a4..41a76285c 100644
--- a/src/core/hle/service/fs/archive.h
+++ b/src/core/hle/service/fs/archive.h
@@ -133,6 +133,15 @@ ResultCode RenameFileBetweenArchives(ArchiveHandle src_archive_handle,
ResultCode DeleteDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
/**
+ * Delete a Directory and anything under it from an Archive
+ * @param archive_handle Handle to an open Archive object
+ * @param path Path to the Directory inside of the Archive
+ * @return Whether deletion succeeded
+ */
+ResultCode DeleteDirectoryRecursivelyFromArchive(ArchiveHandle archive_handle,
+ const FileSys::Path& path);
+
+/**
* Create a File in an Archive
* @param archive_handle Handle to an open Archive object
* @param path Path to the File inside of the Archive