2020-06-24 22:58:13 -07:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
2018-08-01 13:24:03 -07:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/service/caps/caps.h"
|
2020-03-31 16:16:36 -07:00
|
|
|
#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"
|
2018-08-01 13:24:03 -07:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service::Capture {
|
|
|
|
|
2020-11-26 12:19:08 -08:00
|
|
|
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);
|
2018-08-01 13:24:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::Capture
|