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