summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn/sf_service_monitor.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-13 14:18:31 +0100
committerGitHub <noreply@github.com>2024-02-13 14:18:31 +0100
commit95d96cfe663aadedf86ce2b8bd2dfc132463b819 (patch)
tree04c9140090ff20b178c31bd567df9883b0647f58 /src/core/hle/service/ldn/sf_service_monitor.h
parentMerge pull request #12975 from FernandoS27/keep-your-own-vodoo-doll-away-from-gf (diff)
parentservice: ldn: Migrate and refractor service to new IPC (diff)
downloadyuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.tar
yuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.tar.gz
yuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.tar.bz2
yuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.tar.lz
yuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.tar.xz
yuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.tar.zst
yuzu-95d96cfe663aadedf86ce2b8bd2dfc132463b819.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