summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ncm/ncm.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-28 19:46:09 +0200
committerGitHub <noreply@github.com>2018-07-28 19:46:09 +0200
commit458fdda7005f5c84dad652792254260b01a1f389 (patch)
treefd1932868a8a7d5c675d272879577a1581909aae /src/core/hle/service/ncm/ncm.h
parentMerge pull request #846 from lioncash/mii (diff)
parentservice: Add ncm services (diff)
downloadyuzu-458fdda7005f5c84dad652792254260b01a1f389.tar
yuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.gz
yuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.bz2
yuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.lz
yuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.xz
yuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.zst
yuzu-458fdda7005f5c84dad652792254260b01a1f389.zip
Diffstat (limited to 'src/core/hle/service/ncm/ncm.h')
-rw-r--r--src/core/hle/service/ncm/ncm.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/hle/service/ncm/ncm.h b/src/core/hle/service/ncm/ncm.h
new file mode 100644
index 000000000..7bc8518a6
--- /dev/null
+++ b/src/core/hle/service/ncm/ncm.h
@@ -0,0 +1,15 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::NCM {
+
+void InstallInterfaces(SM::ServiceManager& sm);
+
+} // namespace Service::NCM