summaryrefslogtreecommitdiffstats
path: root/src/core/loader/ncch.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2017-08-04 02:37:03 +0200
committerGitHub <noreply@github.com>2017-08-04 02:37:03 +0200
commit0dc285dcfd1085c7725b7db474266371226de672 (patch)
tree1246eca78bc61a5122c12804f3bc70b93245118d /src/core/loader/ncch.h
parentMerge pull request #2850 from j-selby/fix_invalid_paths (diff)
parenttelemetry: Add field for OsPlatform. (diff)
downloadyuzu-0dc285dcfd1085c7725b7db474266371226de672.tar
yuzu-0dc285dcfd1085c7725b7db474266371226de672.tar.gz
yuzu-0dc285dcfd1085c7725b7db474266371226de672.tar.bz2
yuzu-0dc285dcfd1085c7725b7db474266371226de672.tar.lz
yuzu-0dc285dcfd1085c7725b7db474266371226de672.tar.xz
yuzu-0dc285dcfd1085c7725b7db474266371226de672.tar.zst
yuzu-0dc285dcfd1085c7725b7db474266371226de672.zip
Diffstat (limited to 'src/core/loader/ncch.h')
-rw-r--r--src/core/loader/ncch.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h
index 0ebd47fd5..e40cef764 100644
--- a/src/core/loader/ncch.h
+++ b/src/core/loader/ncch.h
@@ -191,23 +191,13 @@ public:
ResultStatus ReadLogo(std::vector<u8>& buffer) override;
- /**
- * Get the program id of the application
- * @param out_program_id Reference to store program id into
- * @return ResultStatus result of function
- */
ResultStatus ReadProgramId(u64& out_program_id) override;
- /**
- * Get the RomFS of the application
- * @param romfs_file Reference to buffer to store data
- * @param offset Offset in the file to the RomFS
- * @param size Size of the RomFS in bytes
- * @return ResultStatus result of function
- */
ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset,
u64& size) override;
+ ResultStatus ReadTitle(std::string& title) override;
+
private:
/**
* Reads an application ExeFS section of an NCCH file into AppLoader (e.g. .code, .logo, etc.)