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