summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/daemon_controller.h
blob: dfad7f52a8e2d39b0dce1ed13e3a7de8b638ac3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/uuid.h"
#include "core/hle/service/cmif_types.h"
#include "core/hle/service/service.h"

namespace Service::OLSC {

class IDaemonController final : public ServiceFramework<IDaemonController> {
public:
    explicit IDaemonController(Core::System& system_);
    ~IDaemonController() override;

private:
    Result GetAutoTransferEnabledForAccountAndApplication(Out<bool> out_is_enabled,
                                                          Common::UUID user_id, u64 application_id);
};

} // namespace Service::OLSC