mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-17 02:35:47 +00:00
Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs
Normal file
19
src/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 141,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
InvalidSettingsValue = ( 1 << ErrorCodeShift) | ModuleId,
|
||||
InvalidObject1 = ( 3 << ErrorCodeShift) | ModuleId,
|
||||
InvalidObject2 = ( 4 << ErrorCodeShift) | ModuleId,
|
||||
NullOutputObject = ( 5 << ErrorCodeShift) | ModuleId,
|
||||
SettingsNotLoaded = ( 6 << ErrorCodeShift) | ModuleId,
|
||||
InvalidArgument = ( 8 << ErrorCodeShift) | ModuleId,
|
||||
SettingsNotInitialized = ( 10 << ErrorCodeShift) | ModuleId,
|
||||
ServiceNotInitialized = (400 << ErrorCodeShift) | ModuleId,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user