mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-16 07:30:32 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
12 lines
206 B
C#
12 lines
206 B
C#
namespace Ryujinx.HLE.HOS
|
|
{
|
|
public enum ResultCode
|
|
{
|
|
OsModuleId = 3,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
NotAllocated = (1023 << ErrorCodeShift) | OsModuleId,
|
|
}
|
|
}
|