mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 13:26:40 +00:00
9 lines
220 B
C#
9 lines
220 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Sm
|
||
|
{
|
||
|
static class SmErr
|
||
|
{
|
||
|
public const int NotInitialized = 2;
|
||
|
public const int AlreadyRegistered = 4;
|
||
|
public const int InvalidName = 6;
|
||
|
}
|
||
|
}
|