2015-06-11 22:12:16 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/service/nim/nim.h"
|
2015-06-11 22:12:16 +00:00
|
|
|
#include "core/hle/service/nim/nim_aoc.h"
|
|
|
|
#include "core/hle/service/nim/nim_s.h"
|
|
|
|
#include "core/hle/service/nim/nim_u.h"
|
|
|
|
|
2018-09-22 12:23:08 +00:00
|
|
|
namespace Service::NIM {
|
2015-06-11 22:12:16 +00:00
|
|
|
|
2018-03-01 19:12:20 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
|
std::make_shared<NIM_AOC>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NIM_S>()->InstallAsService(service_manager);
|
|
|
|
std::make_shared<NIM_U>()->InstallAsService(service_manager);
|
2017-09-30 18:19:58 +00:00
|
|
|
}
|
2015-06-11 22:12:16 +00:00
|
|
|
|
2018-09-22 12:23:08 +00:00
|
|
|
} // namespace Service::NIM
|