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

        Success = 0,

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