blob: 3e66e87334fd890350575d968b7039d16fdfdb41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
}
}
|