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