Move solution and projects to src
This commit is contained in:
12
src/Ryujinx.HLE/HOS/ResultCode.cs
Normal file
12
src/Ryujinx.HLE/HOS/ResultCode.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.HLE.HOS
|
||||
{
|
||||
public enum ResultCode
|
||||
{
|
||||
OsModuleId = 3,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
NotAllocated = (1023 << ErrorCodeShift) | OsModuleId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user