summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/transfer_task_list_controller.h
blob: daf476d8a1e0817928e858d677795b80a7e3b3d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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