summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn/monitor_service.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-02-10 06:06:22 +0100
committergerman77 <juangerman-13@hotmail.com>2024-02-11 20:11:11 +0100
commit2053ff96fccaf2d8e3472cb370141c6d3252c4e1 (patch)
treee2428cb76abf294014e257c698cd4f52521eeccb /src/core/hle/service/ldn/monitor_service.h
parentMerge pull request #12969 from german77/bcat-interface (diff)
downloadyuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.tar
yuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.tar.gz
yuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.tar.bz2
yuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.tar.lz
yuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.tar.xz
yuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.tar.zst
yuzu-2053ff96fccaf2d8e3472cb370141c6d3252c4e1.zip
Diffstat (limited to 'src/core/hle/service/ldn/monitor_service.h')
-rw-r--r--src/core/hle/service/ldn/monitor_service.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/core/hle/service/ldn/monitor_service.h b/src/core/hle/service/ldn/monitor_service.h
new file mode 100644
index 000000000..61aacef30
--- /dev/null
+++ b/src/core/hle/service/ldn/monitor_service.h
@@ -0,0 +1,28 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#pragma once
+
+#include "core/hle/service/cmif_types.h"
+#include "core/hle/service/ldn/ldn_types.h"
+#include "core/hle/service/service.h"
+
+namespace Core {
+class System;
+}
+
+namespace Service::LDN {
+
+class IMonitorService final : public ServiceFramework<IMonitorService> {
+public:
+ explicit IMonitorService(Core::System& system_);
+ ~IMonitorService() override;
+
+private:
+ Result GetStateForMonitor(Out<State> out_state);
+ Result InitializeMonitor();
+
+ State state{State::None};
+};
+
+} // namespace Service::LDN