aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
blob: 82462b4ed6f862bcd55d6994716b817e9b56cf1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.HLE.HOS.Services.Friend
{
    enum ResultCode
    {
        ModuleId = 121,
        ErrorCodeShift = 9,

        Success = 0,

        InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
        InternetRequestDenied = (6 << ErrorCodeShift) | ModuleId,
        NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId,
    }
}