2018-10-17 13:15:50 -04:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-04-21 19:04:43 -04:00
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Prepo
|
2018-04-21 19:04:43 -04:00
|
|
|
{
|
2019-07-10 11:59:54 -04:00
|
|
|
[Service("prepo:a")]
|
|
|
|
[Service("prepo:u")]
|
2018-04-21 19:04:43 -04:00
|
|
|
class IPrepoService : IpcService
|
|
|
|
{
|
2019-07-11 21:13:43 -04:00
|
|
|
public IPrepoService(ServiceCtx context) { }
|
2018-05-17 14:25:42 -04:00
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(10101)]
|
|
|
|
// SaveReportWithUser(nn::account::Uid, u64, pid, buffer<u8, 9>, buffer<bytes, 5>)
|
2019-07-14 15:04:38 -04:00
|
|
|
public static ResultCode SaveReportWithUser(ServiceCtx context)
|
2018-05-17 14:25:42 -04:00
|
|
|
{
|
2019-01-10 19:11:46 -05:00
|
|
|
Logger.PrintStub(LogClass.ServicePrepo);
|
2018-05-17 14:25:42 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-05-17 14:25:42 -04:00
|
|
|
}
|
2018-04-21 19:04:43 -04:00
|
|
|
}
|
|
|
|
}
|