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