mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 09:40:48 -07:00
Move solution and projects to src
This commit is contained in:
16
src/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
Normal file
16
src/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Ldn
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 203,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
DeviceDisabled = (22 << ErrorCodeShift) | ModuleId,
|
||||
InvalidState = (32 << ErrorCodeShift) | ModuleId,
|
||||
Unknown1 = (48 << ErrorCodeShift) | ModuleId,
|
||||
InvalidArgument = (96 << ErrorCodeShift) | ModuleId,
|
||||
InvalidObject = (97 << ErrorCodeShift) | ModuleId,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user