Ryujinx/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlServiceFactory.cs

35 lines
955 B
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Pctl
{
class IParentalControlServiceFactory : IpcService
{
2018-12-01 20:01:59 +00:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-12-01 20:01:59 +00:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public IParentalControlServiceFactory()
{
2018-12-01 20:01:59 +00:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, CreateService },
{ 1, CreateServiceWithoutInitialize }
};
}
2018-12-01 20:01:59 +00:00
public long CreateService(ServiceCtx context)
{
2018-12-01 20:01:59 +00:00
MakeObject(context, new IParentalControlService());
return 0;
}
2018-12-01 20:01:59 +00:00
public long CreateServiceWithoutInitialize(ServiceCtx context)
{
2018-12-01 20:01:59 +00:00
MakeObject(context, new IParentalControlService(false));
return 0;
}
}
}