diff options
| author | 2015-04-03 22:16:50 -0400 | |
|---|---|---|
| committer | 2015-04-03 22:16:50 -0400 | |
| commit | 3fd2cc566b38d34c587140ce3dbc580f85e34717 (patch) | |
| tree | f2e5d7e08062f4bbd49ea618bb78c1de71634763 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #677 from lioncash/cp15 (diff) | |
| parent | Services: Stubs and minor changes (diff) | |
| download | yuzu-3fd2cc566b38d34c587140ce3dbc580f85e34717.tar.gz yuzu-3fd2cc566b38d34c587140ce3dbc580f85e34717.tar.xz yuzu-3fd2cc566b38d34c587140ce3dbc580f85e34717.zip | |
Merge pull request #641 from purpasmart96/service_stubs
Services: Stubs and minor changes
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 91f13cd7e..eeb404659 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | #include "core/hle/service/news_s.h" | 32 | #include "core/hle/service/news_s.h" |
| 33 | #include "core/hle/service/news_u.h" | 33 | #include "core/hle/service/news_u.h" |
| 34 | #include "core/hle/service/nim_aoc.h" | 34 | #include "core/hle/service/nim_aoc.h" |
| 35 | #include "core/hle/service/nim_u.h" | ||
| 35 | #include "core/hle/service/ns_s.h" | 36 | #include "core/hle/service/ns_s.h" |
| 36 | #include "core/hle/service/nwm_uds.h" | 37 | #include "core/hle/service/nwm_uds.h" |
| 37 | #include "core/hle/service/pm_app.h" | 38 | #include "core/hle/service/pm_app.h" |
| @@ -68,10 +69,10 @@ void Init() { | |||
| 68 | AddNamedPort(new ERR_F::Interface); | 69 | AddNamedPort(new ERR_F::Interface); |
| 69 | 70 | ||
| 70 | Service::FS::ArchiveInit(); | 71 | Service::FS::ArchiveInit(); |
| 71 | Service::CFG::CFGInit(); | 72 | Service::CFG::Init(); |
| 72 | Service::APT::APTInit(); | 73 | Service::APT::Init(); |
| 73 | Service::PTM::PTMInit(); | 74 | Service::PTM::Init(); |
| 74 | Service::HID::HIDInit(); | 75 | Service::HID::Init(); |
| 75 | 76 | ||
| 76 | AddService(new AC_U::Interface); | 77 | AddService(new AC_U::Interface); |
| 77 | AddService(new ACT_U::Interface); | 78 | AddService(new ACT_U::Interface); |
| @@ -98,6 +99,7 @@ void Init() { | |||
| 98 | AddService(new NEWS_S::Interface); | 99 | AddService(new NEWS_S::Interface); |
| 99 | AddService(new NEWS_U::Interface); | 100 | AddService(new NEWS_U::Interface); |
| 100 | AddService(new NIM_AOC::Interface); | 101 | AddService(new NIM_AOC::Interface); |
| 102 | AddService(new NIM_U::Interface); | ||
| 101 | AddService(new NS_S::Interface); | 103 | AddService(new NS_S::Interface); |
| 102 | AddService(new NWM_UDS::Interface); | 104 | AddService(new NWM_UDS::Interface); |
| 103 | AddService(new PM_APP::Interface); | 105 | AddService(new PM_APP::Interface); |
| @@ -110,10 +112,10 @@ void Init() { | |||
| 110 | 112 | ||
| 111 | /// Shutdown ServiceManager | 113 | /// Shutdown ServiceManager |
| 112 | void Shutdown() { | 114 | void Shutdown() { |
| 113 | Service::HID::HIDShutdown(); | 115 | Service::HID::Shutdown(); |
| 114 | Service::PTM::PTMShutdown(); | 116 | Service::PTM::Shutdown(); |
| 115 | Service::APT::APTShutdown(); | 117 | Service::APT::Shutdown(); |
| 116 | Service::CFG::CFGShutdown(); | 118 | Service::CFG::Shutdown(); |
| 117 | Service::FS::ArchiveShutdown(); | 119 | Service::FS::ArchiveShutdown(); |
| 118 | 120 | ||
| 119 | g_srv_services.clear(); | 121 | g_srv_services.clear(); |