mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-27 13:56:27 -05: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.
24 lines
943 B
C++
24 lines
943 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "core/hle/service/caps/caps.h"
|
|
#include "core/hle/service/caps/caps_a.h"
|
|
#include "core/hle/service/caps/caps_c.h"
|
|
#include "core/hle/service/caps/caps_sc.h"
|
|
#include "core/hle/service/caps/caps_ss.h"
|
|
#include "core/hle/service/caps/caps_su.h"
|
|
#include "core/hle/service/caps/caps_u.h"
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service::Capture {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
|
|
std::make_shared<CAPS_A>(system)->InstallAsService(sm);
|
|
std::make_shared<CAPS_C>(system)->InstallAsService(sm);
|
|
std::make_shared<CAPS_U>(system)->InstallAsService(sm);
|
|
std::make_shared<CAPS_SC>(system)->InstallAsService(sm);
|
|
std::make_shared<CAPS_SS>(system)->InstallAsService(sm);
|
|
std::make_shared<CAPS_SU>(system)->InstallAsService(sm);
|
|
}
|
|
|
|
} // namespace Service::Capture
|