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