mirror of
https://github.com/starr-dusT/yuzu-mainline
synced 2024-03-05 21:12:25 -08:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
21 lines
785 B
C++
21 lines
785 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "core/hle/service/set/set.h"
|
|
#include "core/hle/service/set/set_cal.h"
|
|
#include "core/hle/service/set/set_fd.h"
|
|
#include "core/hle/service/set/set_sys.h"
|
|
#include "core/hle/service/set/settings.h"
|
|
#include "core/hle/service/sm/sm.h"
|
|
|
|
namespace Service::Set {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) {
|
|
std::make_shared<SET>(system)->InstallAsService(service_manager);
|
|
std::make_shared<SET_CAL>(system)->InstallAsService(service_manager);
|
|
std::make_shared<SET_FD>(system)->InstallAsService(service_manager);
|
|
std::make_shared<SET_SYS>(system)->InstallAsService(service_manager);
|
|
}
|
|
|
|
} // namespace Service::Set
|