summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/vulnerability_manager_interface.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 19:54:36 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:32:21 +0100
commit626f2e65b1a799d3e5c517d480a4691176fbe8d6 (patch)
treeb23c45a1330acab0ed8282697328422e5437385b /src/core/hle/service/ns/vulnerability_manager_interface.h
parentns: rewrite IReadOnlyApplicationControlDataInterface (diff)
downloadyuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.tar
yuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.tar.gz
yuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.tar.bz2
yuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.tar.lz
yuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.tar.xz
yuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.tar.zst
yuzu-626f2e65b1a799d3e5c517d480a4691176fbe8d6.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/vulnerability_manager_interface.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/vulnerability_manager_interface.h b/src/core/hle/service/ns/vulnerability_manager_interface.h
new file mode 100644
index 000000000..c689cf7ec
--- /dev/null
+++ b/src/core/hle/service/ns/vulnerability_manager_interface.h
@@ -0,0 +1,21 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/cmif_types.h"
+#include "core/hle/service/service.h"
+
+namespace Service::NS {
+
+class IVulnerabilityManagerInterface final
+ : public ServiceFramework<IVulnerabilityManagerInterface> {
+public:
+ explicit IVulnerabilityManagerInterface(Core::System& system_);
+ ~IVulnerabilityManagerInterface() override;
+
+private:
+ Result NeedsUpdateVulnerability(Out<bool> out_needs_update_vulnerability);
+};
+
+} // namespace Service::NS