aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Acc/AccErr.cs
blob: 6d770760517e4cda3d3115ab8b62b2f0b702e338 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.HLE.HOS.Services.Acc
{
    static class AccErr
    {
        public const int NullArgument                         = 20;
        public const int InvalidArgument                      = 22;
        public const int NullInputBuffer                      = 30;
        public const int InvalidInputBufferSize               = 31;
        public const int InvalidInputBuffer                   = 32;
        public const int ApplicationLaunchPropertyAlreadyInit = 41;
        public const int UserNotFound                         = 100;
        public const int NullObject                           = 302;
        public const int UnknownError1                        = 341;
    }
}