mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 22:50:46 -07:00
9 lines
200 B
C#
9 lines
200 B
C#
namespace Ryujinx.HLE.HOS.Services.Lr
|
|
{
|
|
internal class LrErr
|
|
{
|
|
public const int ProgramLocationEntryNotFound = 2;
|
|
public const int AccessDenied = 5;
|
|
}
|
|
}
|