mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-02 11:25:46 +00:00
20 lines
497 B
C#
20 lines
497 B
C#
using Ryujinx.HLE.HOS.Services.Nfc.Mifare.MifareManager;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nfc.Mifare
|
|
{
|
|
[Service("nfc:mf:u")]
|
|
class IUserManager : IpcService
|
|
{
|
|
public IUserManager(ServiceCtx context) { }
|
|
|
|
[CommandCmif(0)]
|
|
// CreateUserInterface() -> object<nn::nfc::mf::IUser>
|
|
public ResultCode CreateUserInterface(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IMifare());
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
}
|