mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:48:34 +00:00
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
|
|||
|
}
|
|||
|
}
|