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