mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 08:42:22 -05:00
Move solution and projects to src
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using Ryujinx.HLE.HOS.Services.Pctl.ParentalControlServiceFactory;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Pctl
|
||||
{
|
||||
[Service("pctl", 0x303)]
|
||||
[Service("pctl:a", 0x83BE)]
|
||||
[Service("pctl:r", 0x8040)]
|
||||
[Service("pctl:s", 0x838E)]
|
||||
class IParentalControlServiceFactory : IpcService
|
||||
{
|
||||
private int _permissionFlag;
|
||||
|
||||
public IParentalControlServiceFactory(ServiceCtx context, int permissionFlag)
|
||||
{
|
||||
_permissionFlag = permissionFlag;
|
||||
}
|
||||
|
||||
[CommandCmif(0)]
|
||||
// CreateService(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
||||
public ResultCode CreateService(ServiceCtx context)
|
||||
{
|
||||
ulong pid = context.Request.HandleDesc.PId;
|
||||
|
||||
MakeObject(context, new IParentalControlService(context, pid, true, _permissionFlag));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
|
||||
[CommandCmif(1)] // 4.0.0+
|
||||
// CreateServiceWithoutInitialize(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
||||
public ResultCode CreateServiceWithoutInitialize(ServiceCtx context)
|
||||
{
|
||||
ulong pid = context.Request.HandleDesc.PId;
|
||||
|
||||
MakeObject(context, new IParentalControlService(context, pid, false, _permissionFlag));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user