summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps.cpp
blob: 13940a8c928133b4f21a34a6e504a7861569a08a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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