mirror of
https://github.com/Lime3DS/Lime3DS
synced 2025-01-09 13:43:27 +00:00
26 lines
788 B
C++
26 lines
788 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <memory>
|
|
#include "core/core.h"
|
|
#include "core/hle/service/ir/ir.h"
|
|
#include "core/hle/service/ir/ir_rst.h"
|
|
#include "core/hle/service/ir/ir_u.h"
|
|
#include "core/hle/service/ir/ir_user.h"
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service::IR {
|
|
|
|
void InstallInterfaces(Core::System& system) {
|
|
auto& service_manager = system.ServiceManager();
|
|
std::make_shared<IR_U>()->InstallAsService(service_manager);
|
|
|
|
auto ir_user = std::make_shared<IR_USER>(system);
|
|
ir_user->InstallAsService(service_manager);
|
|
|
|
auto ir_rst = std::make_shared<IR_RST>(system);
|
|
ir_rst->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::IR
|