TimeError.cs 428 B

123456789101112
  1. namespace Ryujinx.HLE.HOS.Services.Time
  2. {
  3. static class TimeError
  4. {
  5. public const int TimeNotFound = 200;
  6. public const int Overflow = 201;
  7. public const int LocationNameTooLong = 801;
  8. public const int OutOfRange = 902;
  9. public const int TimeZoneConversionFailed = 903;
  10. public const int TimeZoneNotFound = 989;
  11. }
  12. }