ResultCode.cs 296 B

12345678910111213
  1. namespace Ryujinx.HLE.HOS.Services.Friend
  2. {
  3. enum ResultCode
  4. {
  5. ModuleId = 121,
  6. ErrorCodeShift = 9,
  7. Success = 0,
  8. InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
  9. NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId
  10. }
  11. }