2019-09-19 01:45:11 +01:00
|
|
|
using Ryujinx.HLE.HOS.Services.Vi.RootService;
|
|
|
|
|
2018-08-17 00:47:36 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-10 16:59:54 +01:00
|
|
|
[Service("vi:u")]
|
2018-04-06 05:01:52 +01:00
|
|
|
class IApplicationRootService : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-12 02:13:43 +01:00
|
|
|
public IApplicationRootService(ServiceCtx context) { }
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(0)]
|
|
|
|
// GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService>
|
2019-07-14 20:04:38 +01: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 20:04:38 +01:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|