summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn/sf_service_monitor.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/sf_service_monitor.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/sf_service_monitor.h')
-rw-r--r--src/core/hle/service/ldn/sf_service_monitor.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/core/hle/service/ldn/sf_service_monitor.h b/src/core/hle/service/ldn/sf_service_monitor.h
new file mode 100644
index 000000000..3cfc5005e
--- /dev/null
+++ b/src/core/hle/service/ldn/sf_service_monitor.h
@@ -0,0 +1,26 @@
+// 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/service.h"
+
+namespace Core {
+class System;
+}
+
+namespace Service::LDN {
+struct GroupInfo;
+
+class ISfServiceMonitor final : public ServiceFramework<ISfServiceMonitor> {
+public:
+ explicit ISfServiceMonitor(Core::System& system_);
+ ~ISfServiceMonitor() override;
+
+private:
+ Result Initialize(Out<u32> out_value);
+ Result GetGroupInfo(OutLargeData<GroupInfo, BufferAttr_HipcAutoSelect> out_group_info);
+};
+
+} // namespace Service::LDN