summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-08-05 18:58:20 +0200
committerGitHub <noreply@github.com>2023-08-05 18:58:20 +0200
commit35bdd5fff3670021e09616f71ee3537c12508b5c (patch)
treeee84f7737b015db13fd4a1d98a776cb6d0053965 /src/core/hle/service/am/am.h
parentMerge pull request #11209 from ameerj/subgroup_size_control (diff)
parentservice: am: Fix wrong interface (diff)
downloadyuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.gz
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.bz2
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.lz
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.xz
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.zst
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.zip
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_);