summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/olsc_service_for_application.h
diff options
context:
space:
mode:
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.h8
1 files changed, 5 insertions, 3 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
index 29074054b..3f9ac7536 100644
--- a/src/core/hle/service/olsc/olsc_service_for_application.h
+++ b/src/core/hle/service/olsc/olsc_service_for_application.h
@@ -1,6 +1,8 @@
// 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 {
@@ -11,9 +13,9 @@ public:
~IOlscServiceForApplication() override;
private:
- void Initialize(HLERequestContext& ctx);
- void GetSaveDataBackupSetting(HLERequestContext& ctx);
- void SetSaveDataBackupSettingEnabled(HLERequestContext& ctx);
+ Result Initialize(ClientProcessId process_id);
+ Result GetSaveDataBackupSetting(Out<u8> out_save_data_backup_setting);
+ Result SetSaveDataBackupSettingEnabled(bool enabled, NS::Uid account_id);
bool initialized{};
};