2019-09-18 17:45:11 -07:00
|
|
|
using Ryujinx.HLE.HOS.Services.Vi.RootService;
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2019-07-10 08:59:54 -07:00
|
|
|
[Service("vi:m")]
|
2018-04-05 21:01:52 -07:00
|
|
|
class IManagerRootService : IpcService
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2020-09-25 03:18:28 -07: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-09 16:14:55 -08:00
|
|
|
|
2019-07-11 18:13:43 -07:00
|
|
|
[Command(2)]
|
|
|
|
// GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService>
|
2019-07-14 12:04:38 -07:00
|
|
|
public ResultCode GetDisplayService(ServiceCtx context)
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
int serviceType = context.RequestData.ReadInt32();
|
2018-02-24 20:34:16 -08:00
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
MakeObject(context, new IApplicationDisplayService());
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2019-07-14 12:04:38 -07:00
|
|
|
return ResultCode.Success;
|
2018-02-09 16:14:55 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|