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"
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
namespace Service::PCTL {
|
2017-12-29 05:44:39 +01:00
|
|
|
|
2018-04-24 17:08:23 +02:00
|
|
|
PCTL::PCTL(std::shared_ptr<Module> module, const char* name)
|
|
|
|
: Module::Interface(std::move(module), name) {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &PCTL::CreateService, "CreateService"},
|
|
|
|
{1, &PCTL::CreateServiceWithoutInitialize, "CreateServiceWithoutInitialize"},
|
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
2017-12-29 05:44:39 +01:00
|
|
|
}
|
2018-04-20 03:41:44 +02:00
|
|
|
} // namespace Service::PCTL
|