mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-10 05:05:26 +00:00
15 lines
347 B
C#
15 lines
347 B
C#
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,
|
|
}
|
|
}
|