summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/olsc_service_for_application.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-23 17:34:29 +0100
committerGitHub <noreply@github.com>2024-02-23 17:34:29 +0100
commitfa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5 (patch)
tree04d960417c9c4aef9108b8640ebf4e82fc3f28a1 /src/core/hle/service/olsc/olsc_service_for_application.h
parentMerge pull request #13100 from liamwhite/audio-ipc (diff)
parentpctl: rewrite IParentalControlService (diff)
downloadyuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.tar
yuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.tar.gz
yuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.tar.bz2
yuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.tar.lz
yuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.tar.xz
yuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.tar.zst
yuzu-fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5.zip
Diffstat (limited to 'src/core/hle/service/olsc/olsc_service_for_application.h')
-rw-r--r--src/core/hle/service/olsc/olsc_service_for_application.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/olsc/olsc_service_for_application.h b/src/core/hle/service/olsc/olsc_service_for_application.h
new file mode 100644
index 000000000..3f9ac7536
--- /dev/null
+++ b/src/core/hle/service/olsc/olsc_service_for_application.h
@@ -0,0 +1,23 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/cmif_types.h"
+#include "core/hle/service/ns/ns_types.h"
+#include "core/hle/service/service.h"
+
+namespace Service::OLSC {
+
+class IOlscServiceForApplication final : public ServiceFramework<IOlscServiceForApplication> {
+public:
+ explicit IOlscServiceForApplication(Core::System& system_);
+ ~IOlscServiceForApplication() override;
+
+private:
+ Result Initialize(ClientProcessId process_id);
+ Result GetSaveDataBackupSetting(Out<u8> out_save_data_backup_setting);
+ Result SetSaveDataBackupSettingEnabled(bool enabled, NS::Uid account_id);
+
+ bool initialized{};
+};
+
+} // namespace Service::OLSC