mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-29 14:32:22 -05:00
Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs
Normal file
19
src/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ISystemManager.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Ryujinx.HLE.HOS.Services.Nfc.Nfp.NfpManager;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
||||
{
|
||||
[Service("nfp:sys")]
|
||||
class ISystemManager : IpcService
|
||||
{
|
||||
public ISystemManager(ServiceCtx context) { }
|
||||
|
||||
[CommandCmif(0)]
|
||||
// CreateSystemInterface() -> object<nn::nfp::detail::ISystem>
|
||||
public ResultCode CreateSystemInterface(ServiceCtx context)
|
||||
{
|
||||
MakeObject(context, new INfp(NfpPermissionLevel.System));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user