mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 18:19:57 -06:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
Normal file
14
src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
Normal file
@ -0,0 +1,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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user