diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-06-29 23:17:35 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-22 18:34:55 +0200 |
commit | 4153bd8d171ffe7cd11c467b338f843859565d51 (patch) | |
tree | 024f3a856b4aab1398f836c243382a3962f6e666 /src/core/core.h | |
parent | reporter: Add log output for packaged lm log data (diff) | |
download | yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.gz yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.bz2 yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.lz yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.xz yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.tar.zst yuzu-4153bd8d171ffe7cd11c467b338f843859565d51.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/core.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index ff10ebe12..0170e0b05 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -58,6 +58,10 @@ namespace Glue { class ARPManager; } +namespace LM { +class Manager; +} // namespace LM + namespace SM { class ServiceManager; } // namespace SM @@ -326,6 +330,10 @@ public: const Service::APM::Controller& GetAPMController() const; + Service::LM::Manager& GetLogManager(); + + const Service::LM::Manager& GetLogManager() const; + void SetExitLock(bool locked); bool GetExitLock() const; |