From 3895f7e4562a02ee07cac6908787802bddf2c092 Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Sun, 22 Sep 2019 21:44:36 -0400 Subject: pfs: Provide accessors for file sizes and offsets --- src/core/file_sys/partition_filesystem.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/file_sys/partition_filesystem.h') diff --git a/src/core/file_sys/partition_filesystem.h b/src/core/file_sys/partition_filesystem.h index 248fdfdeb..279193b19 100644 --- a/src/core/file_sys/partition_filesystem.h +++ b/src/core/file_sys/partition_filesystem.h @@ -29,6 +29,9 @@ public: Loader::ResultStatus GetStatus() const; + std::map GetFileOffsets() const; + std::map GetFileSizes() const; + std::vector> GetFiles() const override; std::vector> GetSubdirectories() const override; std::string GetName() const override; @@ -80,6 +83,9 @@ private: bool is_hfs = false; std::size_t content_offset = 0; + std::map offsets; + std::map sizes; + std::vector pfs_files; }; -- cgit v1.2.3