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