From 6334616b44a0b9fc5d601b6deb13fc2c861f253c Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 21 Feb 2024 16:13:01 -0500 Subject: olsc: move INativeHandleHolder, IOlscServiceForApplication, IOlscServiceForSystemService, ITransferTaskListController --- .../hle/service/olsc/olsc_service_for_application.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/core/hle/service/olsc/olsc_service_for_application.h (limited to 'src/core/hle/service/olsc/olsc_service_for_application.h') 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 { +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 -- cgit v1.2.3