summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ngct/ngct.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-08-29 05:03:29 +0200
committerGitHub <noreply@github.com>2021-08-29 05:03:29 +0200
commit7d2265b6a8c7272710caa69bfa0950c9e6c2c761 (patch)
tree7786e07746f1f6432a98157fa1fb825d57fb2eb7 /src/core/hle/service/ngct/ngct.h
parentMerge pull request #6929 from yuzu-emu/revert-6870-trace-back-stack-back-stack-back (diff)
parentngct: Stub NGCT:U service (diff)
downloadyuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar
yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.gz
yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.bz2
yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.lz
yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.xz
yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.tar.zst
yuzu-7d2265b6a8c7272710caa69bfa0950c9e6c2c761.zip
Diffstat (limited to 'src/core/hle/service/ngct/ngct.h')
-rw-r--r--src/core/hle/service/ngct/ngct.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/ngct/ngct.h b/src/core/hle/service/ngct/ngct.h
new file mode 100644
index 000000000..1f2a47b78
--- /dev/null
+++ b/src/core/hle/service/ngct/ngct.h
@@ -0,0 +1,20 @@
+// Copyright 2021 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included
+
+#pragma once
+
+namespace Core {
+class System;
+}
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::NGCT {
+
+/// Registers all NGCT services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
+
+} // namespace Service::NGCT