diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-06-29 04:46:31 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-29 04:46:31 +0200 |
commit | e2ad3e1fb0771a5280601dbcb9bafe9ebe323492 (patch) | |
tree | 871565865a018bbc32b22d7ec71203604eb6a5ca /src/core/core.h | |
parent | apm: Implement SetCpuBoostMode (diff) | |
download | yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.gz yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.bz2 yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.lz yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.xz yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.tar.zst yuzu-e2ad3e1fb0771a5280601dbcb9bafe9ebe323492.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 70adb7af9..11e73278e 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -43,6 +43,10 @@ struct AppletFrontendSet; class AppletManager; } // namespace AM::Applets +namespace APM { +class Controller; +} + namespace Glue { class ARPManager; } @@ -296,6 +300,10 @@ public: const Service::Glue::ARPManager& GetARPManager() const; + Service::APM::Controller& GetAPMController(); + + const Service::APM::Controller& GetAPMController() const; + private: System(); |