0
0
mirror of https://git.743378673.xyz/MeloNX/MeloNX.git synced 2025-05-14 08:45:18 +00:00

10 lines
270 B
C#

namespace Ryujinx.Core.OsHle.Kernel
{
static class KernelErr
{
public const int InvalidMemRange = 110;
public const int InvalidHandle = 114;
public const int Timeout = 117;
public const int InvalidInfo = 120;
}
}