diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-05-18 03:41:33 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-05-25 22:06:53 +0200 |
commit | 2179ad7483bde3c210bf4f638ae8801b3ba11214 (patch) | |
tree | 27a139c66bb7917c6c2eb7075ecfb615425054f3 /src/core/core.h | |
parent | Merge pull request #2513 from lioncash/string (diff) | |
download | yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.tar yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.tar.gz yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.tar.bz2 yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.tar.lz yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.tar.xz yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.tar.zst yuzu-2179ad7483bde3c210bf4f638ae8801b3ba11214.zip |
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index a9a756a4c..10542ba21 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -8,6 +8,7 @@ #include <memory> #include <string> +#include <map> #include "common/common_types.h" #include "core/file_sys/vfs_types.h" #include "core/hle/kernel/object.h" @@ -285,6 +286,10 @@ public: void ClearContentProvider(FileSys::ContentProviderUnionSlot slot); + void RegisterNSOModule(std::string name, VAddr start_address); + + const std::map<VAddr, std::string, std::greater<>>& GetRegisteredNSOModules() const; + private: System(); |