mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 14:06:40 +00:00
13 lines
300 B
C#
13 lines
300 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Lr
|
|||
|
{
|
|||
|
enum ResultCode
|
|||
|
{
|
|||
|
ModuleId = 8,
|
|||
|
ErrorCodeShift = 9,
|
|||
|
|
|||
|
Success = 0,
|
|||
|
|
|||
|
ProgramLocationEntryNotFound = (2 << ErrorCodeShift) | ModuleId,
|
|||
|
AccessDenied = (5 << ErrorCodeShift) | ModuleId
|
|||
|
}
|
|||
|
}
|