2016-12-22 09:06:27 +01:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/service/nwm/nwm.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_cec.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_ext.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_inf.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_sap.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_soc.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_tst.h"
|
|
|
|
#include "core/hle/service/nwm/nwm_uds.h"
|
|
|
|
|
2018-09-22 14:23:08 +02:00
|
|
|
namespace Service::NWM {
|
2016-12-22 09:06:27 +01:00
|
|
|
|
2017-11-25 21:08:45 +01:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
2018-06-22 16:11:19 +02:00
|
|
|
std::make_shared<NWM_CEC>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NWM_EXT>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NWM_INF>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NWM_SAP>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NWM_SOC>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NWM_TST>()->InstallAsService(service_manager);
|
2017-11-25 21:08:45 +01:00
|
|
|
std::make_shared<NWM_UDS>()->InstallAsService(service_manager);
|
2016-12-22 09:06:27 +01:00
|
|
|
}
|
|
|
|
|
2018-09-22 14:23:08 +02:00
|
|
|
} // namespace Service::NWM
|