diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-23 11:34:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-23 11:34:29 -0500 |
| commit | fa4dec9fe9ff67b0a4f73953b18f0cd7e1698bd5 (patch) | |
| tree | 04d960417c9c4aef9108b8640ebf4e82fc3f28a1 /src/core/hle/service/olsc/daemon_controller.h | |
| parent | 215e887be088ed572da999e9ec7fd8559198524b (diff) | |
| parent | 89c2fd3d2830d5b1e73c9e051e4af39772963036 (diff) | |
Merge pull request #13115 from liamwhite/olsc-pctl
olsc, pctl: move to new ipc
Diffstat (limited to 'src/core/hle/service/olsc/daemon_controller.h')
| -rw-r--r-- | src/core/hle/service/olsc/daemon_controller.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/olsc/daemon_controller.h b/src/core/hle/service/olsc/daemon_controller.h new file mode 100644 index 000000000..dfad7f52a --- /dev/null +++ b/src/core/hle/service/olsc/daemon_controller.h @@ -0,0 +1,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 |
