2018-01-13 22:22:39 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-12-29 05:44:39 +01:00
|
|
|
// 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"
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
namespace Service::PCTL {
|
2017-12-29 05:44:39 +01:00
|
|
|
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|
|
|
std::make_shared<PCTL_A>()->InstallAsService(service_manager);
|
|
|
|
}
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
} // namespace Service::PCTL
|