aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Friend/FriendError.cs
blob: 49bc4c6781ef74cd47c03e94cef3e2d71d472727 (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.HLE.HOS.Services.Friend
{
    static class FriendError
    {
        public const int InvalidArgument        = 2;
        public const int NotificationQueueEmpty = 15;
    }
}