Service/PCTL: convert to module, add services, stub

PCTL::CreateServiceWithoutInitialize and IParentalControlService::Initialize, required by Kirby Star Allies
This commit is contained in:
mailwl
2018-04-24 18:08:23 +03:00
parent ea3151f475
commit 2ba4e2263c
7 changed files with 71 additions and 39 deletions

View File

@@ -4,11 +4,13 @@
#pragma once
#include "core/hle/service/service.h"
#include "core/hle/service/pctl/module.h"
namespace Service::PCTL {
/// Registers all PCTL services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);
class PCTL final : public Module::Interface {
public:
explicit PCTL(std::shared_ptr<Module> module, const char* name);
};
} // namespace Service::PCTL