mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 08:56:24 +02:00
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,
|
|
}
|
|
}
|