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