2019-09-18 19:45:11 -05:00
|
|
|
using Ryujinx.HLE.HOS.Services.Nifm.StaticService;
|
|
|
|
|
2018-08-16 18:47:36 -05:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
2018-02-27 21:31:52 -06:00
|
|
|
{
|
2019-09-04 11:09:20 -05:00
|
|
|
[Service("nifm:a")] // Max sessions: 2
|
|
|
|
[Service("nifm:s")] // Max sessions: 16
|
|
|
|
[Service("nifm:u")] // Max sessions: 5
|
2018-04-05 23:01:52 -05:00
|
|
|
class IStaticService : IpcService
|
2018-02-27 21:31:52 -06:00
|
|
|
{
|
2019-07-11 20:13:43 -05:00
|
|
|
public IStaticService(ServiceCtx context) { }
|
2018-02-27 21:31:52 -06:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(4)]
|
|
|
|
// CreateGeneralServiceOld() -> object<nn::nifm::detail::IGeneralService>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode CreateGeneralServiceOld(ServiceCtx context)
|
2018-02-27 21:31:52 -06:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
MakeObject(context, new IGeneralService());
|
2018-02-27 21:31:52 -06:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-02-27 21:31:52 -06:00
|
|
|
}
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2019-07-11 20:13:43 -05:00
|
|
|
[Command(5)] // 3.0.0+
|
|
|
|
// CreateGeneralService(u64, pid) -> object<nn::nifm::detail::IGeneralService>
|
2019-07-14 14:04:38 -05:00
|
|
|
public ResultCode CreateGeneralService(ServiceCtx context)
|
2018-06-02 17:46:09 -05:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
MakeObject(context, new IGeneralService());
|
2018-06-02 17:46:09 -05:00
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
return ResultCode.Success;
|
2018-06-02 17:46:09 -05:00
|
|
|
}
|
2018-02-27 21:31:52 -06:00
|
|
|
}
|
|
|
|
}
|