diff options
| author | 2014-09-14 11:52:52 +0000 | |
|---|---|---|
| committer | 2014-09-17 14:35:46 +0000 | |
| commit | 3a570a9fee57d77923eb1e71dbadcd08bb39aa25 (patch) | |
| tree | 258010943e989fc61a2a439ff15ead7ed3d11a6f /src/core/hle/kernel/archive.h | |
| parent | FS: Implement OpenArchive, OpenDirectory, OpenFile and OpenFileDirectly calls. (diff) | |
| download | yuzu-3a570a9fee57d77923eb1e71dbadcd08bb39aa25.tar.gz yuzu-3a570a9fee57d77923eb1e71dbadcd08bb39aa25.tar.xz yuzu-3a570a9fee57d77923eb1e71dbadcd08bb39aa25.zip | |
Kernel: Implement the Close command for Archive, File and Directory.
Diffstat (limited to 'src/core/hle/kernel/archive.h')
| -rw-r--r-- | src/core/hle/kernel/archive.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/kernel/archive.h b/src/core/hle/kernel/archive.h index f647aa213..593861f8e 100644 --- a/src/core/hle/kernel/archive.h +++ b/src/core/hle/kernel/archive.h | |||
| @@ -22,6 +22,13 @@ namespace Kernel { | |||
| 22 | Handle OpenArchive(FileSys::Archive::IdCode id_code); | 22 | Handle OpenArchive(FileSys::Archive::IdCode id_code); |
| 23 | 23 | ||
| 24 | /** | 24 | /** |
| 25 | * Closes an archive | ||
| 26 | * @param id_code IdCode of the archive to open | ||
| 27 | * @return true if it worked fine | ||
| 28 | */ | ||
| 29 | Result CloseArchive(FileSys::Archive::IdCode id_code); | ||
| 30 | |||
| 31 | /** | ||
| 25 | * Creates an Archive | 32 | * Creates an Archive |
| 26 | * @param backend File system backend interface to the archive | 33 | * @param backend File system backend interface to the archive |
| 27 | * @param name Optional name of Archive | 34 | * @param name Optional name of Archive |