summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/library_applet_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/library_applet_proxy.h')
-rw-r--r--src/core/hle/service/am/library_applet_proxy.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/service/am/library_applet_proxy.h b/src/core/hle/service/am/library_applet_proxy.h
index cd9e6d02b..8f7a25897 100644
--- a/src/core/hle/service/am/library_applet_proxy.h
+++ b/src/core/hle/service/am/library_applet_proxy.h
@@ -3,16 +3,17 @@
#pragma once
-#include "core/hle/service/am/applet_message_queue.h"
#include "core/hle/service/service.h"
namespace Service::AM {
+struct Applet;
+
class ILibraryAppletProxy final : public ServiceFramework<ILibraryAppletProxy> {
public:
explicit ILibraryAppletProxy(Nvnflinger::Nvnflinger& nvnflinger_,
- std::shared_ptr<AppletMessageQueue> msg_queue_,
- Core::System& system_);
+ std::shared_ptr<Applet> applet_, Core::System& system_);
+ ~ILibraryAppletProxy();
private:
void GetCommonStateGetter(HLERequestContext& ctx);
@@ -29,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