summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/olsc_service_for_application.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-21 22:13:01 +0100
committerLiam <byteslice@airmail.cc>2024-02-21 22:13:01 +0100
commit6334616b44a0b9fc5d601b6deb13fc2c861f253c (patch)
tree0e1084c9372979ab3c5f3d351c21db205dff962e /src/core/hle/service/olsc/olsc_service_for_application.h
parentMerge pull request #13105 from t895/connection-fix (diff)
downloadyuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.tar
yuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.tar.gz
yuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.tar.bz2
yuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.tar.lz
yuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.tar.xz
yuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.tar.zst
yuzu-6334616b44a0b9fc5d601b6deb13fc2c861f253c.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.h21
1 files changed, 21 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..29074054b
--- /dev/null
+++ b/src/core/hle/service/olsc/olsc_service_for_application.h
@@ -0,0 +1,21 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/service.h"
+
+namespace Service::OLSC {
+
+class IOlscServiceForApplication final : public ServiceFramework<IOlscServiceForApplication> {
+public:
+ explicit IOlscServiceForApplication(Core::System& system_);
+ ~IOlscServiceForApplication() override;
+
+private:
+ void Initialize(HLERequestContext& ctx);
+ void GetSaveDataBackupSetting(HLERequestContext& ctx);
+ void SetSaveDataBackupSettingEnabled(HLERequestContext& ctx);
+
+ bool initialized{};
+};
+
+} // namespace Service::OLSC