2020-01-05 03:49:44 -08:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
2018-11-18 11:37:41 -08:00
|
|
|
|
{
|
2019-07-10 08:59:54 -07:00
|
|
|
|
[Service("ns:am")]
|
2018-11-18 11:37:41 -08:00
|
|
|
|
class IApplicationManagerInterface : IpcService
|
|
|
|
|
{
|
2019-07-11 18:13:43 -07:00
|
|
|
|
public IApplicationManagerInterface(ServiceCtx context) { }
|
2019-02-13 16:44:39 -08:00
|
|
|
|
|
2019-07-11 18:13:43 -07:00
|
|
|
|
[Command(400)]
|
2020-01-05 03:49:44 -08:00
|
|
|
|
// GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>)
|
2019-07-14 12:04:38 -07:00
|
|
|
|
public ResultCode GetApplicationControlData(ServiceCtx context)
|
2019-02-13 16:44:39 -08:00
|
|
|
|
{
|
2020-01-05 03:49:44 -08:00
|
|
|
|
byte source = (byte)context.RequestData.ReadInt64();
|
2020-04-27 18:44:29 -07:00
|
|
|
|
ulong titleId = context.RequestData.ReadUInt64();
|
2019-02-13 16:44:39 -08:00
|
|
|
|
|
2020-01-05 03:49:44 -08:00
|
|
|
|
long position = context.Request.ReceiveBuff[0].Position;
|
2019-02-13 16:44:39 -08:00
|
|
|
|
|
2020-05-14 23:16:46 -07:00
|
|
|
|
byte[] nacpData = context.Device.Application.ControlData.ByteSpan.ToArray();
|
2019-02-13 16:44:39 -08:00
|
|
|
|
|
2020-05-03 15:54:50 -07:00
|
|
|
|
context.Memory.Write((ulong)position, nacpData);
|
2019-02-13 16:44:39 -08:00
|
|
|
|
|
2019-07-14 12:04:38 -07:00
|
|
|
|
return ResultCode.Success;
|
2019-02-13 16:44:39 -08:00
|
|
|
|
}
|
2018-11-18 11:37:41 -08:00
|
|
|
|
}
|
2019-07-11 18:13:43 -07:00
|
|
|
|
}
|