diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-25 20:39:38 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-27 20:30:16 -0600 |
| commit | 54f007efc6ed311a8356238ea136b9744b68eb75 (patch) | |
| tree | a890f1257ef353823368476b7e1530ba3016792e /src/core/hle/service/ns/ns.h | |
| parent | 50d8e753c525f8f00a67678c56351eccf72aa1f4 (diff) | |
core/ns: Implement GetReadOnlyApplicationControlDataInterface
Used in checkpoint homebrew
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_); |
