2021-06-24 01:05:40 +02:00
|
|
|
|
using Ryujinx.HLE.HOS.Services.Nfc.Nfp.NfpManager;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
2019-09-19 02:45:11 +02:00
|
|
|
|
{
|
|
|
|
|
[Service("nfp:sys")]
|
|
|
|
|
class ISystemManager : IpcService
|
|
|
|
|
{
|
|
|
|
|
public ISystemManager(ServiceCtx context) { }
|
2021-06-24 01:05:40 +02:00
|
|
|
|
|
|
|
|
|
[CommandHipc(0)]
|
|
|
|
|
// CreateSystemInterface() -> object<nn::nfp::detail::ISystem>
|
|
|
|
|
public ResultCode CreateSystemInterface(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
MakeObject(context, new INfp(NfpPermissionLevel.System));
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
2019-09-19 02:45:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|