summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mnpp/mnpp_app.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/mnpp/mnpp_app.h')
-rw-r--r--src/core/hle/service/mnpp/mnpp_app.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/mnpp/mnpp_app.h b/src/core/hle/service/mnpp/mnpp_app.h
new file mode 100644
index 000000000..6bf20b494
--- /dev/null
+++ b/src/core/hle/service/mnpp/mnpp_app.h
@@ -0,0 +1,20 @@
+// Copyright 2022 yuzu emulator team
+// 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::MNPP {
+
+/// Registers all MNPP services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
+
+} // namespace Service::MNPP