aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Nfc/Nfp/IUserManager.cs
blob: f7439686661ede7c98e3592a7f1bc79725128400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
{
    [Service("nfp:user")]
    class IUserManager : IpcService
    {
        public IUserManager(ServiceCtx context) { }

        [Command(0)]
        // CreateUserInterface() -> object<nn::nfp::detail::IUser>
        public ResultCode GetUserInterface(ServiceCtx context)
        {
            MakeObject(context, new IUser());

            return ResultCode.Success;
        }
    }
}