yuzu/src/core/hle/service/pctl/pctl.cpp

20 lines
645 B
C++
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 19:15:37 +04:00
#include "core/hle/service/pctl/pctl.h"
namespace Service::PCTL {
2021-04-05 03:30:07 +04:00
PCTL::PCTL(Core::System& system_, std::shared_ptr<Module> module_, const char* name,
2021-05-16 13:38:19 +04:00
Capability capability_)
: Interface{system_, std::move(module_), name, capability_} {
2020-12-28 19:15:37 +04:00
static const FunctionInfo functions[] = {
{0, &PCTL::CreateService, "CreateService"},
{1, &PCTL::CreateServiceWithoutInitialize, "CreateServiceWithoutInitialize"},
};
RegisterHandlers(functions);
}
PCTL::~PCTL() = default;
} // namespace Service::PCTL