mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 02:07:59 -05:00
core/ns: Implement GetReadOnlyApplicationControlDataInterface
Used in checkpoint homebrew
This commit is contained in:
@ -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_);
|
||||
|
Reference in New Issue
Block a user