summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/transfer_task_list_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/olsc/transfer_task_list_controller.h')
-rw-r--r--src/core/hle/service/olsc/transfer_task_list_controller.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/core/hle/service/olsc/transfer_task_list_controller.h b/src/core/hle/service/olsc/transfer_task_list_controller.h
new file mode 100644
index 000000000..daf476d8a
--- /dev/null
+++ b/src/core/hle/service/olsc/transfer_task_list_controller.h
@@ -0,0 +1,17 @@
+// 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 ITransferTaskListController final : public ServiceFramework<ITransferTaskListController> {
+public:
+ explicit ITransferTaskListController(Core::System& system_);
+ ~ITransferTaskListController() override;
+
+private:
+ void GetNativeHandleHolder(HLERequestContext& ctx);
+};
+
+} // namespace Service::OLSC