2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pctl
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-07-10 17:59:54 +02:00
|
|
|
[Service("pctl")]
|
|
|
|
[Service("pctl:a")]
|
|
|
|
[Service("pctl:r")]
|
|
|
|
[Service("pctl:s")]
|
2018-04-06 06:01:52 +02:00
|
|
|
class IParentalControlServiceFactory : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
public IParentalControlServiceFactory(ServiceCtx context) { }
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(0)]
|
|
|
|
// CreateService(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateService(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
MakeObject(context, new IParentalControlService());
|
2018-02-25 05:34:16 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2018-06-12 20:28:45 +02:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(1)] // 4.0.0+
|
|
|
|
// CreateServiceWithoutInitialize(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateServiceWithoutInitialize(ServiceCtx context)
|
2018-06-12 20:28:45 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
MakeObject(context, new IParentalControlService(false));
|
2018-06-12 20:28:45 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-12 20:28:45 +02:00
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
}
|