diff options
| author | bunnei <bunneidev@gmail.com> | 2021-11-28 00:54:48 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-28 00:54:48 -0800 |
| commit | 11a9bff36d1c03df24c6bdef089e3db3184e67b4 (patch) | |
| tree | 855f56c1f0a5d73c3cf2b2ccab47777c7920eb14 /src/core/hle/service/ns/ns.h | |
| parent | be56587ad7cd56ef8254d552986c75436396bf30 (diff) | |
| parent | 54f007efc6ed311a8356238ea136b9744b68eb75 (diff) | |
Merge pull request #7438 from german77/homebrew2
Core: Stub services and functions needed for checkpoint
Diffstat (limited to 'src/core/hle/service/ns/ns.h')
| -rw-r--r-- | src/core/hle/service/ns/ns.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/ns.h b/src/core/hle/service/ns/ns.h index 218eec3ec..43540b0fb 100644 --- a/src/core/hle/service/ns/ns.h +++ b/src/core/hle/service/ns/ns.h @@ -74,6 +74,13 @@ public: ~IFactoryResetInterface() override; }; +class IReadOnlyApplicationControlDataInterface final + : public ServiceFramework<IReadOnlyApplicationControlDataInterface> { +public: + explicit IReadOnlyApplicationControlDataInterface(Core::System& system_); + ~IReadOnlyApplicationControlDataInterface() override; +}; + class NS final : public ServiceFramework<NS> { public: explicit NS(const char* name, Core::System& system_); |
