diff options
| author | 2019-06-21 14:05:18 -0400 | |
|---|---|---|
| committer | 2019-06-21 14:05:18 -0400 | |
| commit | 96412848a9db0643198ea882824688f23dc19606 (patch) | |
| tree | 2824eafaf4bc026cc3fc0ee498d1c5c623f3aa65 /src/core/loader/loader.h | |
| parent | Merge pull request #2291 from DarkLordZach/homebrew-testing (diff) | |
| parent | loader: Move NSO module tracking to AppLoader (diff) | |
| download | yuzu-96412848a9db0643198ea882824688f23dc19606.tar.gz yuzu-96412848a9db0643198ea882824688f23dc19606.tar.xz yuzu-96412848a9db0643198ea882824688f23dc19606.zip | |
Merge pull request #2482 from DarkLordZach/prepo
core: Add detailed local reporting feature for development
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 869406b75..8d3329202 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -267,6 +267,12 @@ public: | |||
| 267 | return ResultStatus::ErrorNotImplemented; | 267 | return ResultStatus::ErrorNotImplemented; |
| 268 | } | 268 | } |
| 269 | 269 | ||
| 270 | using Modules = std::map<VAddr, std::string>; | ||
| 271 | |||
| 272 | virtual ResultStatus ReadNSOModules(Modules& modules) { | ||
| 273 | return ResultStatus::ErrorNotImplemented; | ||
| 274 | } | ||
| 275 | |||
| 270 | protected: | 276 | protected: |
| 271 | FileSys::VirtualFile file; | 277 | FileSys::VirtualFile file; |
| 272 | bool is_loaded = false; | 278 | bool is_loaded = false; |