Ryujinx/Ryujinx.HLE/HOS/Services/Nfp/IUserManager.cs

27 lines
674 B
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Nfp
{
class IUserManager : IpcService
{
2018-12-01 20:01:59 +00:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-12-01 20:01:59 +00:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public IUserManager()
{
2018-12-01 20:01:59 +00:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, GetUserInterface }
};
}
2018-12-01 20:01:59 +00:00
public long GetUserInterface(ServiceCtx context)
{
2018-12-01 20:01:59 +00:00
MakeObject(context, new IUser(context.Device.System));
return 0;
}
}
}