2019-07-12 01:13:43 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
|
[Service("nfp:user")]
|
2018-06-02 22:46:09 +00:00
|
|
|
|
class IUserManager : IpcService
|
|
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
|
public IUserManager(ServiceCtx context) { }
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
|
[CommandHipc(0)]
|
2019-07-12 01:13:43 +00:00
|
|
|
|
// CreateUserInterface() -> object<nn::nfp::detail::IUser>
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode GetUserInterface(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
2019-06-28 11:08:23 +00:00
|
|
|
|
MakeObject(context, new IUser());
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-06-02 22:46:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|