2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Vi.RootService;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("vi:m")]
|
2018-04-06 04:01:52 +00:00
|
|
|
class IManagerRootService : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2020-09-25 10:18:28 +00:00
|
|
|
// vi:u/m/s aren't on 3 separate threads but we can't put them together with the current ServerBase
|
|
|
|
public IManagerRootService(ServiceCtx context) : base(new ServerBase("ViServerM")) { }
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2)]
|
|
|
|
// GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetDisplayService(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
int serviceType = context.RequestData.ReadInt32();
|
2018-02-25 04:34:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new IApplicationDisplayService());
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|