summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl/pctl.cpp
blob: 692b27a714d20e0b7551b0d77f3ed652f31f1536 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/pctl/pctl.h"
#include "core/hle/service/pctl/pctl_a.h"

namespace Service {
namespace PCTL {

void InstallInterfaces(SM::ServiceManager& service_manager) {
    std::make_shared<PCTL_A>()->InstallAsService(service_manager);
}

} // namespace PCTL
} // namespace Service