2020-06-25 01:58:13 -04:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
2018-08-01 16:24:03 -04: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 19:16:36 -04: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 16:24:03 -04:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service::Capture {
|
|
|
|
|
2020-11-26 15:19:08 -05: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 16:24:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::Capture
|