aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Kernel/KernelErr.cs
blob: b568405b7c0f003e85609de33f59908a3dd232fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Core.OsHle.Kernel
{
    static class KernelErr
    {
        public const int InvalidAlignment = 102;
        public const int InvalidAddress   = 106;
        public const int InvalidMemRange  = 110;
        public const int InvalidHandle    = 114;
        public const int Timeout          = 117;
        public const int InvalidInfo      = 120;
    }
}