mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-05 22:42:56 -06:00
![Ac_K](/assets/img/avatar_default.png)
* pctl: refactoring IParentalControlServiceFactory and IParentalControlService call Our previous implementation was totally guessed. Now it's implemented according to RE, even if it's stubbed because we will not support Parental Control for now. * unknownFlag > permissionFlag
15 lines
375 B
C#
15 lines
375 B
C#
namespace Ryujinx.HLE.HOS.Services.Pctl
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 142,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
FreeCommunicationDisabled = (101 << ErrorCodeShift) | ModuleId,
|
|
InvalidPid = (131 << ErrorCodeShift) | ModuleId,
|
|
PermissionDenied = (133 << ErrorCodeShift) | ModuleId
|
|
}
|
|
}
|