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

12 lines
212 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Nim
{
enum ResultCode
{
ModuleId = 137,
ErrorCodeShift = 9,
Success = 0,
NullArgument = (90 << ErrorCodeShift) | ModuleId
}
}