2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Pctl.ParentalControlServiceFactory;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pctl
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2020-05-15 01:14:38 +00:00
|
|
|
[Service("pctl", 0x303)]
|
|
|
|
[Service("pctl:a", 0x83BE)]
|
|
|
|
[Service("pctl:r", 0x8040)]
|
|
|
|
[Service("pctl:s", 0x838E)]
|
2018-04-06 04:01:52 +00:00
|
|
|
class IParentalControlServiceFactory : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2020-05-15 01:14:38 +00:00
|
|
|
private int _permissionFlag;
|
|
|
|
|
|
|
|
public IParentalControlServiceFactory(ServiceCtx context, int permissionFlag)
|
|
|
|
{
|
|
|
|
_permissionFlag = permissionFlag;
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(0)]
|
2019-07-12 01:13:43 +00:00
|
|
|
// CreateService(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode CreateService(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2022-02-09 20:18:07 +00:00
|
|
|
ulong pid = context.Request.HandleDesc.PId;
|
2021-06-29 16:57:06 +00:00
|
|
|
|
|
|
|
MakeObject(context, new IParentalControlService(context, pid, true, _permissionFlag));
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
2018-06-12 18:28:45 +00:00
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(1)] // 4.0.0+
|
2019-07-12 01:13:43 +00:00
|
|
|
// CreateServiceWithoutInitialize(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode CreateServiceWithoutInitialize(ServiceCtx context)
|
2018-06-12 18:28:45 +00:00
|
|
|
{
|
2022-02-09 20:18:07 +00:00
|
|
|
ulong pid = context.Request.HandleDesc.PId;
|
2021-06-29 16:57:06 +00:00
|
|
|
|
|
|
|
MakeObject(context, new IParentalControlService(context, pid, false, _permissionFlag));
|
2018-06-12 18:28:45 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-12 18:28:45 +00:00
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|