diff options
| author | 2019-05-26 11:40:41 -0400 | |
|---|---|---|
| committer | 2019-05-26 11:40:46 -0400 | |
| commit | b77fde7c5c1f63aad9d4f01ea625805661870f3e (patch) | |
| tree | 1a69520beebaac50ecd19d4c54828f7b8a498dd0 /src/core/loader/loader.h | |
| parent | prepo: Save reports from PlayReport service (diff) | |
| download | yuzu-b77fde7c5c1f63aad9d4f01ea625805661870f3e.tar.gz yuzu-b77fde7c5c1f63aad9d4f01ea625805661870f3e.tar.xz yuzu-b77fde7c5c1f63aad9d4f01ea625805661870f3e.zip | |
loader: Move NSO module tracking to AppLoader
Also cleanup of general stuff
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index f7846db52..d6372c559 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -278,6 +278,12 @@ public: | |||
| 278 | return ResultStatus::ErrorNotImplemented; | 278 | return ResultStatus::ErrorNotImplemented; |
| 279 | } | 279 | } |
| 280 | 280 | ||
| 281 | using Modules = std::map<VAddr, std::string>; | ||
| 282 | |||
| 283 | virtual ResultStatus ReadNSOModules(Modules& modules) { | ||
| 284 | return ResultStatus::ErrorNotImplemented; | ||
| 285 | } | ||
| 286 | |||
| 281 | protected: | 287 | protected: |
| 282 | FileSys::VirtualFile file; | 288 | FileSys::VirtualFile file; |
| 283 | bool is_loaded = false; | 289 | bool is_loaded = false; |