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