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