diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-08-02 13:00:30 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-08-02 13:00:30 -0600 |
| commit | dd1cbd9c56ceec0e1819d7373a48dbc63521096e (patch) | |
| tree | f9dbd0adfff4186fcb5e4fa54aafd37a6280e9b5 /src/core/hle/service/am/am.h | |
| parent | 096644c01cb8cd30589d5f168fdabaac5aad174a (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.h | 6 |
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_); |
