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