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