mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-19 08:52:42 +00:00
Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs
Normal file
19
src/Ryujinx.HLE/HOS/Services/Nfc/IUserManager.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Ryujinx.HLE.HOS.Services.Nfc.NfcManager;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Nfc
|
||||
{
|
||||
[Service("nfc:user")]
|
||||
class IUserManager : IpcService
|
||||
{
|
||||
public IUserManager(ServiceCtx context) { }
|
||||
|
||||
[CommandCmif(0)]
|
||||
// CreateUserInterface() -> object<nn::nfc::detail::IUser>
|
||||
public ResultCode CreateUserInterface(ServiceCtx context)
|
||||
{
|
||||
MakeObject(context, new INfc(NfcPermissionLevel.User));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user