FsErr.cs 226 B

123456789
  1. namespace Ryujinx.Core.OsHle.Objects.FspSrv
  2. {
  3. static class FsErr
  4. {
  5. public const int PathDoesNotExist = 1;
  6. public const int PathAlreadyExists = 2;
  7. public const int PathAlreadyInUse = 7;
  8. }
  9. }