2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-06-11 02:46:42 +02:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-04-22 01:04:43 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Prepo
|
2018-04-22 01:04:43 +02:00
|
|
|
{
|
|
|
|
class IPrepoService : IpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public IPrepoService()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-05-17 20:25:42 +02:00
|
|
|
{ 10101, SaveReportWithUser }
|
2018-04-22 01:04:43 +02:00
|
|
|
};
|
|
|
|
}
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
|
|
public static long SaveReportWithUser(ServiceCtx Context)
|
|
|
|
{
|
2018-08-17 01:47:36 +02:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServicePrepo, "Stubbed.");
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-04-22 01:04:43 +02:00
|
|
|
}
|
|
|
|
}
|