summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mm/mm_u.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/mm/mm_u.h')
-rw-r--r--src/core/hle/service/mm/mm_u.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/hle/service/mm/mm_u.h b/src/core/hle/service/mm/mm_u.h
index 5439fa653..49b6a3355 100644
--- a/src/core/hle/service/mm/mm_u.h
+++ b/src/core/hle/service/mm/mm_u.h
@@ -4,11 +4,17 @@
#pragma once
-#include "core/hle/service/service.h"
+namespace Core {
+class System;
+}
+
+namespace Service::SM {
+class ServiceManager;
+}
namespace Service::MM {
/// Registers all MM services with the specified service manager.
-void InstallInterfaces(SM::ServiceManager& service_manager);
+void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
} // namespace Service::MM