FsErr.cs 326 B

1234567891011
  1. namespace Ryujinx.HLE.HOS.Services.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. public const int PartitionNotFound = 1001;
  9. public const int InvalidInput = 6001;
  10. }
  11. }