SvcResult.cs 216 B

1234567891011
  1. namespace Ryujinx.Core.OsHle.Svc
  2. {
  3. enum SvcResult
  4. {
  5. Success = 0,
  6. ErrBadHandle = 0xe401,
  7. ErrTimeout = 0xea01,
  8. ErrBadInfo = 0xf001,
  9. ErrBadIpcReq = 0xf601
  10. }
  11. }