diff options
| author | 2014-11-24 01:12:58 -0800 | |
|---|---|---|
| committer | 2014-11-24 15:09:12 -0800 | |
| commit | e5ff01c2cde0fe903140f0215461a68d4f489132 (patch) | |
| tree | 1ce6d82dcc1d154a98d5931d57c30e12ef0cc18f /src/core/hle/kernel/archive.h | |
| parent | Implemented RenameFile in FS:USER (diff) | |
| download | yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.gz yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.tar.xz yuzu-e5ff01c2cde0fe903140f0215461a68d4f489132.zip | |
Implemented RenameDirectory in FS:USER
Diffstat (limited to 'src/core/hle/kernel/archive.h')
| -rw-r--r-- | src/core/hle/kernel/archive.h | 11 |
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 | |||
| 80 | Result CreateDirectoryFromArchive(Handle archive_handle, const FileSys::Path& path); | 80 | Result CreateDirectoryFromArchive(Handle archive_handle, const FileSys::Path& path); |
| 81 | 81 | ||
| 82 | /** | 82 | /** |
| 83 | * Rename a Directory between two Archives | ||
| 84 | * @param src_archive_handle Handle to the source Archive object | ||
| 85 | * @param src_path Path to the Directory inside of the source Archive | ||
| 86 | * @param dest_archive_handle Handle to the destination Archive object | ||
| 87 | * @param dest_path Path to the Directory inside of the destination Archive | ||
| 88 | * @return Whether rename succeeded | ||
| 89 | */ | ||
| 90 | Result RenameDirectoryBetweenArchives(Handle src_archive_handle, const FileSys::Path& src_path, | ||
| 91 | Handle dest_archive_handle, const FileSys::Path& dest_path); | ||
| 92 | |||
| 93 | /** | ||
| 83 | * Open a Directory from an Archive | 94 | * Open a Directory from an Archive |
| 84 | * @param archive_handle Handle to an open Archive object | 95 | * @param archive_handle Handle to an open Archive object |
| 85 | * @param path Path to the Directory inside of the Archive | 96 | * @param path Path to the Directory inside of the Archive |