2019-07-14 21:04:38 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
|
|
|
|
{
|
|
|
|
|
enum ResultCode
|
|
|
|
|
{
|
|
|
|
|
ModuleId = 121,
|
|
|
|
|
ErrorCodeShift = 9,
|
|
|
|
|
|
|
|
|
|
Success = 0,
|
|
|
|
|
|
|
|
|
|
InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
|
2020-05-04 15:10:15 +02:00
|
|
|
|
InternetRequestDenied = (6 << ErrorCodeShift) | ModuleId,
|
2019-07-14 21:04:38 +02:00
|
|
|
|
NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId
|
|
|
|
|
}
|
2020-05-04 15:10:15 +02:00
|
|
|
|
}
|