diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2016-12-15 09:54:25 +0000 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-12-15 18:42:38 +0000 |
commit | 351b5d23f4b332a36e4b5c7668809deae4de4af1 (patch) | |
tree | e0f327f749e3caf50a122caff856789d87ce67ff /src/core/loader/loader.h | |
parent | 40b0ea1086627e88c124f2ebfc6089183a5112b5 (diff) |
loader: Implement ReadProgramId
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r-- | src/core/loader/loader.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 5e3d46638..a6c2a745f 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -144,6 +144,15 @@ public: } /** + * Get the program id of the application + * @param out_program_id Reference to store program id into + * @return ResultStatus result of function + */ + virtual ResultStatus ReadProgramId(u64& out_program_id) { + return ResultStatus::ErrorNotImplemented; + } + + /** * Get the RomFS of the application * Since the RomFS can be huge, we return a file reference instead of copying to a buffer * @param romfs_file The file containing the RomFS |