mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:58:32 +00:00
6c9565693f
* Changes to allow explicit management of service threads * Remove now unused code * Remove ThreadCounter, its no longer needed * Allow and use separate server per service, also fix exit issues * New policy change: PTC version now uses PR number
21 lines
632 B
C#
21 lines
632 B
C#
using Ryujinx.HLE.HOS.Services.Vi.RootService;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Vi
|
|
{
|
|
[Service("vi:u")]
|
|
class IApplicationRootService : IpcService
|
|
{
|
|
public IApplicationRootService(ServiceCtx context) : base(new ServerBase("ViServer")) { }
|
|
|
|
[Command(0)]
|
|
// GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService>
|
|
public ResultCode GetDisplayService(ServiceCtx context)
|
|
{
|
|
int serviceType = context.RequestData.ReadInt32();
|
|
|
|
MakeObject(context, new IApplicationDisplayService());
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |