aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/pm/pm.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-26 19:07:34 -0400
committerZach Hilman <zachhilman@gmail.com>2019-06-26 19:07:34 -0400
commitbce4bfffb64683c1033a875d35885f4ea650c2a9 (patch)
tree8225d45804534954a6fba289b7b1a291056b0bd2 /src/core/hle/service/pm/pm.h
parent354c254cde34650310c5254c4e7d8672069177c0 (diff)
pm: Implement pm:shell and pm:dmnt GetApplicationPid
Returns the process ID of the current application or 0 if no app is running.
Diffstat (limited to 'src/core/hle/service/pm/pm.h')
-rw-r--r--src/core/hle/service/pm/pm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/pm/pm.h b/src/core/hle/service/pm/pm.h
index cc8d3f215..852e7050c 100644
--- a/src/core/hle/service/pm/pm.h
+++ b/src/core/hle/service/pm/pm.h
@@ -4,8 +4,8 @@
#pragma once
-namespace Service::SM {
-class ServiceManager;
+namespace Core {
+class System;
}
namespace Service::PM {
@@ -16,6 +16,6 @@ enum class SystemBootMode {
};
/// Registers all PM services with the specified service manager.
-void InstallInterfaces(SM::ServiceManager& service_manager);
+void InstallInterfaces(Core::System& system);
} // namespace Service::PM