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