aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-08-02 13:00:30 -0600
committerNarr the Reg <juangerman-13@hotmail.com>2023-08-02 13:00:30 -0600
commitdd1cbd9c56ceec0e1819d7373a48dbc63521096e (patch)
treef9dbd0adfff4186fcb5e4fa54aafd37a6280e9b5 /src/core/hle/service/am/am.h
parent096644c01cb8cd30589d5f168fdabaac5aad174a (diff)
service: am: Fix wrong interface
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_);