1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 06:24:10 +01:00
Ryujinx/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs

41 lines
1 KiB
C#
Raw Normal View History

using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Pctl
{
class IParentalControlService : IpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
private bool Initialized = false;
private bool NeedInitialize;
2018-06-13 01:51:59 +01:00
public IParentalControlService(bool NeedInitialize = true)
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 1, Initialize }
};
2018-06-13 01:51:59 +01:00
this.NeedInitialize = NeedInitialize;
}
public long Initialize(ServiceCtx Context)
{
if (NeedInitialize && !Initialized)
2018-06-13 01:51:59 +01:00
{
Initialized = true;
2018-06-13 01:51:59 +01:00
}
else
2018-06-13 01:51:59 +01:00
{
Logger.PrintWarning(LogClass.ServicePctl, "Service is already initialized!");
2018-06-13 01:51:59 +01:00
}
return 0;
}
}
}