mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-25 22:49:15 +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