summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/archive.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-11-24 10:12:58 +0100
committerarchshift <admin@archshift.com>2014-11-25 00:09:12 +0100
commite5ff01c2cde0fe903140f0215461a68d4f489132 (patch)
tree1ce6d82dcc1d154a98d5931d57c30e12ef0cc18f /src/core/hle/kernel/archive.h
parentImplemented RenameFile in FS:USER (diff)
downloadyuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar
yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.gz
yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.bz2
yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.lz
yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.xz
yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.zst
yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/archive.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/hle/kernel/archive.h b/src/core/hle/kernel/archive.h
index 5158fbae8..9d071d315 100644
--- a/src/core/hle/kernel/archive.h
+++ b/src/core/hle/kernel/archive.h
@@ -80,6 +80,17 @@ Result DeleteDirectoryFromArchive(Handle archive_handle, const FileSys::Path& pa
Result CreateDirectoryFromArchive(Handle archive_handle, const FileSys::Path& path);
/**
+ * Rename a Directory between two Archives
+ * @param src_archive_handle Handle to the source Archive object
+ * @param src_path Path to the Directory inside of the source Archive
+ * @param dest_archive_handle Handle to the destination Archive object
+ * @param dest_path Path to the Directory inside of the destination Archive
+ * @return Whether rename succeeded
+ */
+Result RenameDirectoryBetweenArchives(Handle src_archive_handle, const FileSys::Path& src_path,
+ Handle dest_archive_handle, const FileSys::Path& dest_path);
+
+/**
* Open a Directory from an Archive
* @param archive_handle Handle to an open Archive object
* @param path Path to the Directory inside of the Archive