summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/download_task_interface.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 18:13:03 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:32:21 +0100
commitdb172ba249d8984ac3838496fcf9986ef1e3f9bc (patch)
treef75f6a0cf045862029a69b8390f0c27f42409818 /src/core/hle/service/ns/download_task_interface.cpp
parentns: rewrite IDocumentInterface (diff)
downloadyuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.tar
yuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.tar.gz
yuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.tar.bz2
yuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.tar.lz
yuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.tar.xz
yuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.tar.zst
yuzu-db172ba249d8984ac3838496fcf9986ef1e3f9bc.zip
Diffstat (limited to 'src/core/hle/service/ns/download_task_interface.cpp')
-rw-r--r--src/core/hle/service/ns/download_task_interface.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/download_task_interface.cpp b/src/core/hle/service/ns/download_task_interface.cpp
new file mode 100644
index 000000000..62dc7f187
--- /dev/null
+++ b/src/core/hle/service/ns/download_task_interface.cpp
@@ -0,0 +1,39 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/cmif_serialization.h"
+#include "core/hle/service/ns/download_task_interface.h"
+
+namespace Service::NS {
+
+IDownloadTaskInterface::IDownloadTaskInterface(Core::System& system_)
+ : ServiceFramework{system_, "IDownloadTaskInterface"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {701, nullptr, "ClearTaskStatusList"},
+ {702, nullptr, "RequestDownloadTaskList"},
+ {703, nullptr, "RequestEnsureDownloadTask"},
+ {704, nullptr, "ListDownloadTaskStatus"},
+ {705, nullptr, "RequestDownloadTaskListData"},
+ {706, nullptr, "TryCommitCurrentApplicationDownloadTask"},
+ {707, D<&IDownloadTaskInterface::EnableAutoCommit>, "EnableAutoCommit"},
+ {708, D<&IDownloadTaskInterface::DisableAutoCommit>, "DisableAutoCommit"},
+ {709, nullptr, "TriggerDynamicCommitEvent"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+}
+
+IDownloadTaskInterface::~IDownloadTaskInterface() = default;
+
+Result IDownloadTaskInterface::EnableAutoCommit() {
+ LOG_WARNING(Service_NS, "(STUBBED) called");
+ R_SUCCEED();
+}
+Result IDownloadTaskInterface::DisableAutoCommit() {
+ LOG_WARNING(Service_NS, "(STUBBED) called");
+ R_SUCCEED();
+}
+
+} // namespace Service::NS