aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Pctl/ResultCode.cs
blob: fcf06ee974ef63941b8e141fa067a30faf84fe2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Ryujinx.HLE.HOS.Services.Pctl
{
    enum ResultCode
    {
        ModuleId       = 142,
        ErrorCodeShift = 9,

        Success = 0,

        FreeCommunicationDisabled                   = (101 << ErrorCodeShift) | ModuleId,
        StereoVisionDenied                          = (104 << ErrorCodeShift) | ModuleId,
        InvalidPid                                  = (131 << ErrorCodeShift) | ModuleId,
        PermissionDenied                            = (133 << ErrorCodeShift) | ModuleId,
        StereoVisionRestrictionConfigurableDisabled = (181 << ErrorCodeShift) | ModuleId,
    }
}