diff options
| author | bunnei <bunneidev@gmail.com> | 2019-07-10 16:28:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-10 16:28:29 -0400 |
| commit | 463af08bedd50e23cb667486855c6d917dc25aa7 (patch) | |
| tree | 27e793ecbf1ced874f780ff1408c0f6d5280844b /src/core/hle/service/pm/pm.h | |
| parent | d707a12b9ab574758af2b0295086b7ca2416180d (diff) | |
| parent | bce4bfffb64683c1033a875d35885f4ea650c2a9 (diff) | |
Merge pull request #2611 from DarkLordZach/pm-info-cmd
pm: Implement various pm commands for finding process and title IDs
Diffstat (limited to 'src/core/hle/service/pm/pm.h')
| -rw-r--r-- | src/core/hle/service/pm/pm.h | 6 |
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 |
