summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/system_applet_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/system_applet_proxy.h')
-rw-r--r--src/core/hle/service/am/system_applet_proxy.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/am/system_applet_proxy.h b/src/core/hle/service/am/system_applet_proxy.h
index b8855b1d6..0390cd1e5 100644
--- a/src/core/hle/service/am/system_applet_proxy.h
+++ b/src/core/hle/service/am/system_applet_proxy.h
@@ -8,11 +8,13 @@
namespace Service::AM {
+struct Applet;
+
class ISystemAppletProxy final : public ServiceFramework<ISystemAppletProxy> {
public:
explicit ISystemAppletProxy(Nvnflinger::Nvnflinger& nvnflinger_,
- std::shared_ptr<AppletMessageQueue> msg_queue_,
- Core::System& system_);
+ std::shared_ptr<Applet> applet_, Core::System& system_);
+ ~ISystemAppletProxy();
private:
void GetCommonStateGetter(HLERequestContext& ctx);
@@ -28,7 +30,7 @@ private:
void GetDebugFunctions(HLERequestContext& ctx);
Nvnflinger::Nvnflinger& nvnflinger;
- std::shared_ptr<AppletMessageQueue> msg_queue;
+ std::shared_ptr<Applet> applet;
};
} // namespace Service::AM