summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/application_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/application_proxy.h')
-rw-r--r--src/core/hle/service/am/application_proxy.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/service/am/application_proxy.h b/src/core/hle/service/am/application_proxy.h
index 4f620242b..eb98b095c 100644
--- a/src/core/hle/service/am/application_proxy.h
+++ b/src/core/hle/service/am/application_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 IApplicationProxy final : public ServiceFramework<IApplicationProxy> {
public:
explicit IApplicationProxy(Nvnflinger::Nvnflinger& nvnflinger_,
- std::shared_ptr<AppletMessageQueue> msg_queue_,
- Core::System& system_);
+ std::shared_ptr<Applet> msg_queue_, Core::System& system_);
+ ~IApplicationProxy();
private:
void GetAudioController(HLERequestContext& ctx);
@@ -26,7 +27,7 @@ private:
void GetApplicationFunctions(HLERequestContext& ctx);
Nvnflinger::Nvnflinger& nvnflinger;
- std::shared_ptr<AppletMessageQueue> msg_queue;
+ std::shared_ptr<Applet> applet;
};
} // namespace Service::AM