summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/library_applet_creator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/library_applet_creator.h')
-rw-r--r--src/core/hle/service/am/library_applet_creator.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/am/library_applet_creator.h b/src/core/hle/service/am/library_applet_creator.h
index 97f236fbc..551f287bd 100644
--- a/src/core/hle/service/am/library_applet_creator.h
+++ b/src/core/hle/service/am/library_applet_creator.h
@@ -7,9 +7,11 @@
namespace Service::AM {
+struct Applet;
+
class ILibraryAppletCreator final : public ServiceFramework<ILibraryAppletCreator> {
public:
- explicit ILibraryAppletCreator(Core::System& system_);
+ explicit ILibraryAppletCreator(Core::System& system_, std::shared_ptr<Applet> applet_);
~ILibraryAppletCreator() override;
private:
@@ -17,6 +19,8 @@ private:
void CreateStorage(HLERequestContext& ctx);
void CreateTransferMemoryStorage(HLERequestContext& ctx);
void CreateHandleStorage(HLERequestContext& ctx);
+
+ const std::shared_ptr<Applet> applet;
};
} // namespace Service::AM