mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-31 14:50:33 +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;
|
||
|
}
|
||
|
}
|