aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/archive.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-11-23 23:20:04 -0800
committerGravatar archshift <admin@archshift.com>2014-11-24 15:09:11 -0800
commit45afc15aa6b9b1798a321bc053171deb765d7681 (patch)
tree54da02809c463f89462c3b29a48fb1564f699f01 /src/core/hle/kernel/archive.h
parentbb730855e58d18d8964d158a55822c40503d548f (diff)
Implemented RenameFile in FS:USER
Diffstat (limited to 'src/core/hle/kernel/archive.h')
-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 6fc4f0f2..5158fbae 100644
--- a/src/core/hle/kernel/archive.h
+++ b/src/core/hle/kernel/archive.h
@@ -53,6 +53,17 @@ ResultVal<Handle> OpenFileFromArchive(Handle archive_handle, const FileSys::Path
Result DeleteFileFromArchive(Handle archive_handle, const FileSys::Path& path);
/**
+ * Rename a File between two Archives
+ * @param src_archive_handle Handle to the source Archive object
+ * @param src_path Path to the File inside of the source Archive
+ * @param dest_archive_handle Handle to the destination Archive object
+ * @param dest_path Path to the File inside of the destination Archive
+ * @return Whether rename succeeded
+ */
+Result RenameFileBetweenArchives(Handle src_archive_handle, const FileSys::Path& src_path,
+ Handle dest_archive_handle, const FileSys::Path& dest_path);
+
+/**
* Delete a Directory from an Archive
* @param archive_handle Handle to an open Archive object
* @param path Path to the Directory inside of the Archive