aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-08-05 12:58:20 -0400
committerGitHub <noreply@github.com>2023-08-05 12:58:20 -0400
commit35bdd5fff3670021e09616f71ee3537c12508b5c (patch)
treeee84f7737b015db13fd4a1d98a776cb6d0053965 /src/core/hle/service/am/am.h
parent369fcadf088c2483ee17519156253034221cbd07 (diff)
parentdd1cbd9c56ceec0e1819d7373a48dbc63521096e (diff)
Merge pull request #11208 from german77/interface
service: am: Fix wrong interface ILibraryAppletSelfAccessor
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index d4fd163da..3db09c214 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -314,6 +314,12 @@ private:
void CreateHandleStorage(HLERequestContext& ctx);
};
+class ILibraryAppletSelfAccessor final : public ServiceFramework<ILibraryAppletSelfAccessor> {
+public:
+ explicit ILibraryAppletSelfAccessor(Core::System& system_);
+ ~ILibraryAppletSelfAccessor() override;
+};
+
class IApplicationFunctions final : public ServiceFramework<IApplicationFunctions> {
public:
explicit IApplicationFunctions(Core::System& system_);