diff options
| author | 2016-12-16 15:08:04 +0000 | |
|---|---|---|
| committer | 2016-12-16 15:08:04 +0000 | |
| commit | acc83a1c32ef43c6ff84926ff21dc5ef872decc0 (patch) | |
| tree | 95c20b3525c9e3a92444d45d3b5e071cea4e7dd7 /src/core/loader/loader.h | |
| parent | Merge pull request #2338 from wwylele/fix-dead (diff) | |
| parent | main: Open folder when open save folder location context menu is clicked (diff) | |
| download | yuzu-acc83a1c32ef43c6ff84926ff21dc5ef872decc0.tar.gz yuzu-acc83a1c32ef43c6ff84926ff21dc5ef872decc0.tar.xz yuzu-acc83a1c32ef43c6ff84926ff21dc5ef872decc0.zip | |
Merge pull request #2322 from MerryMage/ctx-mnu
game_list: Add a context menu with "Open Save Location" option
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: | |||
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | /** | 146 | /** |
| 147 | * Get the program id of the application | ||
| 148 | * @param out_program_id Reference to store program id into | ||
| 149 | * @return ResultStatus result of function | ||
| 150 | */ | ||
| 151 | virtual ResultStatus ReadProgramId(u64& out_program_id) { | ||
| 152 | return ResultStatus::ErrorNotImplemented; | ||
| 153 | } | ||
| 154 | |||
| 155 | /** | ||
| 147 | * Get the RomFS of the application | 156 | * Get the RomFS of the application |
| 148 | * Since the RomFS can be huge, we return a file reference instead of copying to a buffer | 157 | * Since the RomFS can be huge, we return a file reference instead of copying to a buffer |
| 149 | * @param romfs_file The file containing the RomFS | 158 | * @param romfs_file The file containing the RomFS |