2019-09-19 02:45:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Pctl.ParentalControlServiceFactory;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pctl
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-05-15 03:14:38 +02:00
|
|
|
[Service("pctl", 0x303)]
|
|
|
|
[Service("pctl:a", 0x83BE)]
|
|
|
|
[Service("pctl:r", 0x8040)]
|
|
|
|
[Service("pctl:s", 0x838E)]
|
2018-04-06 06:01:52 +02:00
|
|
|
class IParentalControlServiceFactory : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2020-05-15 03:14:38 +02:00
|
|
|
private int _permissionFlag;
|
|
|
|
|
|
|
|
public IParentalControlServiceFactory(ServiceCtx context, int permissionFlag)
|
|
|
|
{
|
|
|
|
_permissionFlag = permissionFlag;
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2023-04-15 01:00:34 +02:00
|
|
|
[CommandCmif(0)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// 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
|
|
|
{
|
2022-02-09 21:18:07 +01:00
|
|
|
ulong pid = context.Request.HandleDesc.PId;
|
2021-06-29 18:57:06 +02:00
|
|
|
|
|
|
|
MakeObject(context, new IParentalControlService(context, pid, true, _permissionFlag));
|
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
|
|
|
|
2023-04-15 01:00:34 +02:00
|
|
|
[CommandCmif(1)] // 4.0.0+
|
2019-07-12 03:13:43 +02:00
|
|
|
// 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
|
|
|
{
|
2022-02-09 21:18:07 +01:00
|
|
|
ulong pid = context.Request.HandleDesc.PId;
|
2021-06-29 18:57:06 +02:00
|
|
|
|
|
|
|
MakeObject(context, new IParentalControlService(context, pid, false, _permissionFlag));
|
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
|
|
|
}
|
|
|
|
}
|