diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-07 05:13:37 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-07 05:13:42 +0200 |
commit | 91cfe70301bec23099ae27ad70e3da525a573cfe (patch) | |
tree | fa8fbde6661373f7d835f814b09f54f132b99aeb /src/core/loader/xci.h | |
parent | Fix missing qjpeg DLL (diff) | |
download | yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.tar yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.tar.gz yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.tar.bz2 yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.tar.lz yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.tar.xz yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.tar.zst yuzu-91cfe70301bec23099ae27ad70e3da525a573cfe.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/xci.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/loader/xci.h b/src/core/loader/xci.h index 0dbcfbdf8..973833050 100644 --- a/src/core/loader/xci.h +++ b/src/core/loader/xci.h @@ -33,12 +33,17 @@ public: ResultStatus ReadRomFS(FileSys::VirtualFile& dir) override; ResultStatus ReadProgramId(u64& out_program_id) override; + ResultStatus ReadIcon(std::vector<u8>& buffer) override; + ResultStatus ReadTitle(std::string& title) override; private: FileSys::ProgramMetadata metadata; std::unique_ptr<FileSys::XCI> xci; std::unique_ptr<AppLoader_NCA> nca_loader; + + FileSys::VirtualFile icon_file; + std::shared_ptr<FileSys::NACP> nacp_file; }; } // namespace Loader |