summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/archive.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-11-02 17:15:52 -0500
committerGravatar bunnei2014-11-02 17:15:52 -0500
commit9be17e4d8420fecd42f61c9c26c1f31a3fad0d9d (patch)
tree8904eaeb0422ef0e85ecd4c077874d9f0a63a9cc /src/core/hle/kernel/archive.cpp
parentMerge pull request #179 from Gareth422/myradicalbranch (diff)
parentAdded CreateDirectory function to service/fs.cpp, and in Archive. (diff)
downloadyuzu-9be17e4d8420fecd42f61c9c26c1f31a3fad0d9d.tar.gz
yuzu-9be17e4d8420fecd42f61c9c26c1f31a3fad0d9d.tar.xz
yuzu-9be17e4d8420fecd42f61c9c26c1f31a3fad0d9d.zip
Merge pull request #163 from archshift/create-directory
Added CreateDirectory function to service/fs.cpp, and in Archive.
Diffstat (limited to 'src/core/hle/kernel/archive.cpp')
-rw-r--r--src/core/hle/kernel/archive.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/hle/kernel/archive.cpp b/src/core/hle/kernel/archive.cpp
index 4a6140c71..764082d71 100644
--- a/src/core/hle/kernel/archive.cpp
+++ b/src/core/hle/kernel/archive.cpp
@@ -381,6 +381,21 @@ Handle OpenFileFromArchive(Handle archive_handle, const std::string& path, const
381} 381}
382 382
383/** 383/**
384 * Create a Directory from an Archive
385 * @param archive_handle Handle to an open Archive object
386 * @param path Path to the Directory inside of the Archive
387 * @return Opened Directory object
388 */
389Result CreateDirectoryFromArchive(Handle archive_handle, const std::string& path) {
390 Archive* archive = Kernel::g_object_pool.GetFast<Archive>(archive_handle);
391 if (archive == nullptr)
392 return -1;
393 if (archive->backend->CreateDirectory(path))
394 return 0;
395 return -1;
396}
397
398/**
384 * Open a Directory from an Archive 399 * Open a Directory from an Archive
385 * @param archive_handle Handle to an open Archive object 400 * @param archive_handle Handle to an open Archive object
386 * @param path Path to the Directory inside of the Archive 401 * @param path Path to the Directory inside of the Archive