2018-08-16 17:47:36 -06:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-09 17:14:55 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 17:47:36 -06:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
2018-02-09 17:14:55 -07:00
|
|
|
{
|
2018-04-05 22:01:52 -06:00
|
|
|
class IServiceCreator : IpcService
|
2018-02-09 17:14:55 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-09 17:14:55 -07:00
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-09 17:14:55 -07:00
|
|
|
|
2018-04-05 22:01:52 -06:00
|
|
|
public IServiceCreator()
|
2018-02-09 17:14:55 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-09 17:14:55 -07:00
|
|
|
{
|
2018-02-24 21:34:16 -07:00
|
|
|
{ 0, CreateFriendService }
|
2018-02-09 17:14:55 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-06 04:16:24 -07:00
|
|
|
public static long CreateFriendService(ServiceCtx context)
|
2018-02-09 17:14:55 -07:00
|
|
|
{
|
2018-12-06 04:16:24 -07:00
|
|
|
MakeObject(context, new IFriendService());
|
2018-02-24 21:34:16 -07:00
|
|
|
|
2018-02-09 17:14:55 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|