1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 02:56:47 -06:00

15 lines
375 B
C#
Raw Normal View History

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
}
}