mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:38:33 +00:00
4ad3936afd
* refactoring result codes - Add a main enum who can handle some orphalin result codes and the default `ResultCode.Success` one. - Add sub-enum by services when it's needed. - Remove some empty line. - Recast all service calls to ResultCode. - Remove some unneeded static declaration. - Delete unused `NvHelper` class. * NvResult is back * Fix
29 lines
920 B
C#
29 lines
920 B
C#
namespace Ryujinx.HLE.HOS.Services.Pctl
|
|
{
|
|
[Service("pctl")]
|
|
[Service("pctl:a")]
|
|
[Service("pctl:r")]
|
|
[Service("pctl:s")]
|
|
class IParentalControlServiceFactory : IpcService
|
|
{
|
|
public IParentalControlServiceFactory(ServiceCtx context) { }
|
|
|
|
[Command(0)]
|
|
// CreateService(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
|
public ResultCode CreateService(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IParentalControlService());
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(1)] // 4.0.0+
|
|
// CreateServiceWithoutInitialize(u64, pid) -> object<nn::pctl::detail::ipc::IParentalControlService>
|
|
public ResultCode CreateServiceWithoutInitialize(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IParentalControlService(false));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |