summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/process_winding_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/process_winding_controller.h')
-rw-r--r--src/core/hle/service/am/process_winding_controller.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/am/process_winding_controller.h b/src/core/hle/service/am/process_winding_controller.h
index 9b9704201..71ae4c4f5 100644
--- a/src/core/hle/service/am/process_winding_controller.h
+++ b/src/core/hle/service/am/process_winding_controller.h
@@ -7,14 +7,18 @@
namespace Service::AM {
+struct Applet;
+
class IProcessWindingController final : public ServiceFramework<IProcessWindingController> {
public:
- explicit IProcessWindingController(Core::System& system_);
+ explicit IProcessWindingController(Core::System& system_, std::shared_ptr<Applet> applet_);
~IProcessWindingController() override;
private:
void GetLaunchReason(HLERequestContext& ctx);
void OpenCallingLibraryApplet(HLERequestContext& ctx);
+
+ const std::shared_ptr<Applet> applet;
};
} // namespace Service::AM