Service/NWM: add nwm services
This commit is contained in:
parent
76890672a0
commit
069a88dad7
18 changed files with 317 additions and 10 deletions
|
@ -35,7 +35,7 @@
|
|||
#include "core/hle/service/nfc/nfc.h"
|
||||
#include "core/hle/service/nim/nim.h"
|
||||
#include "core/hle/service/ns_s.h"
|
||||
#include "core/hle/service/nwm_uds.h"
|
||||
#include "core/hle/service/nwm/nwm.h"
|
||||
#include "core/hle/service/pm_app.h"
|
||||
#include "core/hle/service/ptm/ptm.h"
|
||||
#include "core/hle/service/qtm/qtm.h"
|
||||
|
@ -154,6 +154,7 @@ void Init() {
|
|||
NEWS::Init();
|
||||
NFC::Init();
|
||||
NIM::Init();
|
||||
NWM::Init();
|
||||
PTM::Init();
|
||||
QTM::Init();
|
||||
|
||||
|
@ -166,7 +167,6 @@ void Init() {
|
|||
AddService(new LDR::LDR_RO);
|
||||
AddService(new MIC::MIC_U);
|
||||
AddService(new NS::NS_S);
|
||||
AddService(new NWM::NWM_UDS);
|
||||
AddService(new PM::PM_APP);
|
||||
AddService(new SOC::SOC_U);
|
||||
AddService(new SSL::SSL_C);
|
||||
|
@ -177,7 +177,6 @@ void Init() {
|
|||
|
||||
/// Shutdown ServiceManager
|
||||
void Shutdown() {
|
||||
|
||||
PTM::Shutdown();
|
||||
NIM::Shutdown();
|
||||
NEWS::Shutdown();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue