aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/archive_extsavedata.h
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-03-22 14:58:38 -0400
committerGravatar bunnei <bunneidev@gmail.com>2015-03-22 14:58:38 -0400
commit03ceb7adf978693728eaae42d4cc8ccb9ff6913b (patch)
treecca5e66af529021ea7a7eedb7a61e56e6dde241c /src/core/file_sys/archive_extsavedata.h
parent5ac2a41f7248a9f2cfbb8ee6180bd4ad1df47ff5 (diff)
parentb9612fe9195206ab9920d697b6b20e23db8a5be4 (diff)
Merge pull request #656 from Subv/nz
Services/FS: Implemented DeleteExtSaveData, CreateSystemSaveData and Del...
Diffstat (limited to 'src/core/file_sys/archive_extsavedata.h')
-rw-r--r--src/core/file_sys/archive_extsavedata.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_extsavedata.h b/src/core/file_sys/archive_extsavedata.h
index 83c6b029..c77c04e4 100644
--- a/src/core/file_sys/archive_extsavedata.h
+++ b/src/core/file_sys/archive_extsavedata.h
@@ -58,4 +58,14 @@ std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path)
*/
std::string GetExtDataContainerPath(const std::string& mount_point, bool shared);
+/**
+ * Constructs a FileSys::Path object that refers to the ExtData archive identified by
+ * the specified media type, high save id and low save id.
+ * @param media_type The media type where the archive is located (NAND / SDMC)
+ * @param high The high word of the save id for the archive
+ * @param low The low word of the save id for the archive
+ * @returns A FileSys::Path to the wanted archive
+ */
+Path ConstructExtDataBinaryPath(u32 media_type, u32 high, u32 low);
+
} // namespace FileSys