IPrepoService.cs 529 B

1234567891011121314151617181920
  1. using Ryujinx.Common.Logging;
  2. namespace Ryujinx.HLE.HOS.Services.Prepo
  3. {
  4. [Service("prepo:a")]
  5. [Service("prepo:u")]
  6. class IPrepoService : IpcService
  7. {
  8. public IPrepoService(ServiceCtx context) { }
  9. [Command(10101)]
  10. // SaveReportWithUser(nn::account::Uid, u64, pid, buffer<u8, 9>, buffer<bytes, 5>)
  11. public static ResultCode SaveReportWithUser(ServiceCtx context)
  12. {
  13. Logger.PrintStub(LogClass.ServicePrepo);
  14. return ResultCode.Success;
  15. }
  16. }
  17. }