blob: 7dd3a20573a693f0368c391a40d13c2545c0ad3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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;
}
}
|