1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-11 09:16:38 +00:00
Ryujinx/Ryujinx.HLE/HOS/Services/Sm/SmErr.cs

10 lines
268 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Sm
{
static class SmErr
{
public const int NotInitialized = 2;
public const int AlreadyRegistered = 4;
public const int InvalidName = 6;
public const int NotRegistered = 7;
}
}