summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/archive.h
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-10-02 05:29:04 +0200
committerwwylele <wwylele@gmail.com>2016-10-02 05:29:16 +0200
commit96b0e9476bdd010051bec427d365b49437801f4d (patch)
tree6a80eef8c0fbbf7e891755a102fcc8674efb1f26 /src/core/hle/service/fs/archive.h
parentMerge pull request #2083 from yuriks/opengl-scissor-cached-rect (diff)
downloadyuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.gz
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.bz2
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.lz
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.xz
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.zst
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.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