LrErr.cs 191 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Lr
  2. {
  3. class LrErr
  4. {
  5. public const int ProgramLocationEntryNotFound = 2;
  6. public const int AccessDenied = 5;
  7. }
  8. }