summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ngct/ngct.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-08-27 02:16:09 +0200
committergerman77 <juangerman-13@hotmail.com>2021-08-27 21:15:34 +0200
commitf134a5e56cbd7f507914ea4092ae561f8b23936b (patch)
tree3b49071060f0ff88c3469848f08a19a1971441f8 /src/core/hle/service/ngct/ngct.h
parentMerge pull request #6870 from yzct12345/trace-back-stack-back-stack-back (diff)
downloadyuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.tar
yuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.tar.gz
yuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.tar.bz2
yuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.tar.lz
yuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.tar.xz
yuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.tar.zst
yuzu-f134a5e56cbd7f507914ea4092ae561f8b23936b.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