summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/system_update_control.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 19:57:26 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:32:21 +0100
commit306ed4984b25bfc448e5b3bcc5c122a958a4d55a (patch)
tree2c0998998972ff4da7144d7e37e73e86354488dc /src/core/hle/service/ns/system_update_control.h
parentns: rewrite IVulnerabilityManagerInterface (diff)
downloadyuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.tar
yuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.tar.gz
yuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.tar.bz2
yuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.tar.lz
yuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.tar.xz
yuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.tar.zst
yuzu-306ed4984b25bfc448e5b3bcc5c122a958a4d55a.zip
Diffstat (limited to 'src/core/hle/service/ns/system_update_control.h')
-rw-r--r--src/core/hle/service/ns/system_update_control.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/system_update_control.h b/src/core/hle/service/ns/system_update_control.h
new file mode 100644
index 000000000..a30a09000
--- /dev/null
+++ b/src/core/hle/service/ns/system_update_control.h
@@ -0,0 +1,16 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::NS {
+
+class ISystemUpdateControl final : public ServiceFramework<ISystemUpdateControl> {
+public:
+ explicit ISystemUpdateControl(Core::System& system_);
+ ~ISystemUpdateControl() override;
+};
+
+} // namespace Service::NS