IPrepoService.cs 555 B

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