summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_ae.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-11-07 08:01:33 +0100
committerDavid Marcec <dmarcecguzman@gmail.com>2018-11-07 08:01:33 +0100
commit41e99d8880f4946256344d06b732412ca16c9a13 (patch)
treef7cb2af97284ae6e7c73db24634a36dd73d42698 /src/core/hle/service/am/applet_ae.h
parentMerge pull request #1649 from degasus/split_resource_manager (diff)
downloadyuzu-41e99d8880f4946256344d06b732412ca16c9a13.tar
yuzu-41e99d8880f4946256344d06b732412ca16c9a13.tar.gz
yuzu-41e99d8880f4946256344d06b732412ca16c9a13.tar.bz2
yuzu-41e99d8880f4946256344d06b732412ca16c9a13.tar.lz
yuzu-41e99d8880f4946256344d06b732412ca16c9a13.tar.xz
yuzu-41e99d8880f4946256344d06b732412ca16c9a13.tar.zst
yuzu-41e99d8880f4946256344d06b732412ca16c9a13.zip
Diffstat (limited to 'src/core/hle/service/am/applet_ae.h')
-rw-r--r--src/core/hle/service/am/applet_ae.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_ae.h b/src/core/hle/service/am/applet_ae.h
index 1ed77baa4..902db2665 100644
--- a/src/core/hle/service/am/applet_ae.h
+++ b/src/core/hle/service/am/applet_ae.h
@@ -17,15 +17,19 @@ namespace AM {
class AppletAE final : public ServiceFramework<AppletAE> {
public:
- explicit AppletAE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger);
+ explicit AppletAE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger,
+ std::shared_ptr<AppletMessageQueue> msg_queue);
~AppletAE() override;
+ const std::shared_ptr<AppletMessageQueue>& GetMessageQueue() const;
+
private:
void OpenSystemAppletProxy(Kernel::HLERequestContext& ctx);
void OpenLibraryAppletProxy(Kernel::HLERequestContext& ctx);
void OpenLibraryAppletProxyOld(Kernel::HLERequestContext& ctx);
std::shared_ptr<NVFlinger::NVFlinger> nvflinger;
+ std::shared_ptr<AppletMessageQueue> msg_queue;
};
} // namespace AM