36 lines
1004 B
C#
36 lines
1004 B
C#
using Ryujinx.Common.Logging;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
|
{
|
|
class IWindowController : IpcService
|
|
{
|
|
private readonly long _pid;
|
|
|
|
public IWindowController(long pid)
|
|
{
|
|
_pid = pid;
|
|
}
|
|
|
|
[Command(1)]
|
|
// GetAppletResourceUserId() -> nn::applet::AppletResourceUserId
|
|
public ResultCode GetAppletResourceUserId(ServiceCtx context)
|
|
{
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
|
|
|
long appletResourceUserId = context.Device.System.AppletState.AppletResourceUserIds.Add(_pid);
|
|
|
|
context.ResponseData.Write(appletResourceUserId);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(10)]
|
|
// AcquireForegroundRights()
|
|
public ResultCode AcquireForegroundRights(ServiceCtx context)
|
|
{
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |