2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IWindowController : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2020-12-01 23:23:43 +00:00
|
|
|
private readonly long _pid;
|
|
|
|
|
|
|
|
public IWindowController(long pid)
|
|
|
|
{
|
|
|
|
_pid = pid;
|
|
|
|
}
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(1)]
|
2019-07-12 01:13:43 +00:00
|
|
|
// GetAppletResourceUserId() -> nn::applet::AppletResourceUserId
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetAppletResourceUserId(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2020-12-01 23:23:43 +00:00
|
|
|
long appletResourceUserId = context.Device.System.AppletState.AppletResourceUserIds.Add(_pid);
|
|
|
|
|
|
|
|
context.ResponseData.Write(appletResourceUserId);
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(10)]
|
2019-07-12 01:13:43 +00:00
|
|
|
// AcquireForegroundRights()
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode AcquireForegroundRights(ServiceCtx context)
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2020-08-03 23:32:53 +00:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-17 00:24:42 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|