mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-22 18:32:41 +00:00
Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs
Normal file
15
src/Ryujinx.HLE/HOS/Services/Sm/ResultCode.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Sm
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 21,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
NotInitialized = (2 << ErrorCodeShift) | ModuleId,
|
||||
AlreadyRegistered = (4 << ErrorCodeShift) | ModuleId,
|
||||
InvalidName = (6 << ErrorCodeShift) | ModuleId,
|
||||
NotRegistered = (7 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user