diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-09-12 00:47:05 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2014-09-17 16:35:46 +0200 |
commit | c14e5713f52cd58f2a8206d844448a8c2d1a54b6 (patch) | |
tree | 00b089a33c950107ad161a36b1c17808a85eef88 /src/core/file_sys/archive_sdmc.h | |
parent | Core: Add a Directory object, with both a stub and a passthrough implementations. (diff) | |
download | yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.tar yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.tar.gz yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.tar.bz2 yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.tar.lz yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.tar.xz yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.tar.zst yuzu-c14e5713f52cd58f2a8206d844448a8c2d1a54b6.zip |
Diffstat (limited to 'src/core/file_sys/archive_sdmc.h')
-rw-r--r-- | src/core/file_sys/archive_sdmc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_sdmc.h b/src/core/file_sys/archive_sdmc.h index 931817e5b..946f8b957 100644 --- a/src/core/file_sys/archive_sdmc.h +++ b/src/core/file_sys/archive_sdmc.h @@ -37,6 +37,13 @@ public: std::unique_ptr<File> OpenFile(const std::string& path, const Mode mode) const override; /** + * Open a directory specified by its path + * @param path Path relative to the archive + * @return Opened directory, or nullptr + */ + std::unique_ptr<Directory> OpenDirectory(const std::string& path) const override; + + /** * Read data from the archive * @param offset Offset in bytes to start reading archive from * @param length Length in bytes to read data from archive |