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 17:59:54 +02:00
|
|
|
[Service("vi:u")]
|
2018-04-06 01:01:52 -03:00
|
|
|
class IApplicationRootService : IpcService
|
2018-02-09 21:14:55 -03:00
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
public IApplicationRootService(ServiceCtx context) { }
|
2018-02-09 21:14:55 -03:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(0)]
|
|
|
|
// GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService>
|
2018-12-06 05:16:24 -06:00
|
|
|
public long GetDisplayService(ServiceCtx context)
|
2018-02-09 21:14:55 -03:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
int serviceType = context.RequestData.ReadInt32();
|
2018-02-25 01:34:16 -03:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
MakeObject(context, new IApplicationDisplayService());
|
2018-02-09 21:14:55 -03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|