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