mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:48:32 +00:00
13 lines
395 B
C#
13 lines
395 B
C#
namespace Ryujinx.HLE.OsHle.Services.Nv
|
|
{
|
|
static class NvResult
|
|
{
|
|
public const int Success = 0;
|
|
public const int TryAgain = -11;
|
|
public const int OutOfMemory = -12;
|
|
public const int InvalidInput = -22;
|
|
public const int NotSupported = -25;
|
|
public const int Restart = -85;
|
|
public const int TimedOut = -110;
|
|
}
|
|
} |