summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-05-26 11:40:41 -0400
committerGravatar Zach Hilman2019-05-26 11:40:46 -0400
commitb77fde7c5c1f63aad9d4f01ea625805661870f3e (patch)
tree1a69520beebaac50ecd19d4c54828f7b8a498dd0 /src/core/loader/loader.h
parentprepo: Save reports from PlayReport service (diff)
downloadyuzu-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.h6
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
281protected: 287protected:
282 FileSys::VirtualFile file; 288 FileSys::VirtualFile file;
283 bool is_loaded = false; 289 bool is_loaded = false;