summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/olsc_service_for_system_service.h
blob: a81fba0dca121f096dc2aba38d32f7f473a1d79d (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 IOlscServiceForSystemService final : public ServiceFramework<IOlscServiceForSystemService> {
public:
    explicit IOlscServiceForSystemService(Core::System& system_);
    ~IOlscServiceForSystemService() override;

private:
    void OpenTransferTaskListController(HLERequestContext& ctx);
};

} // namespace Service::OLSC