aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Nv/NvResult.cs
blob: 86ecd97558b8db8409c73a7a861231830c5829e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.HLE.HOS.Services.Nv
{
    static class NvResult
    {
        public const int NotAvailableInProduction = 196614;
        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;
    }
}