| 123456789101112131415161718192021222324 |
- namespace Ryujinx.HLE.HOS.Services.Ns
- {
- [Service("ns:am")]
- class IApplicationManagerInterface : IpcService
- {
- public IApplicationManagerInterface(ServiceCtx context) { }
- [CommandHipc(400)]
- // GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>)
- public ResultCode GetApplicationControlData(ServiceCtx context)
- {
- byte source = (byte)context.RequestData.ReadInt64();
- ulong titleId = context.RequestData.ReadUInt64();
- ulong position = context.Request.ReceiveBuff[0].Position;
- byte[] nacpData = context.Device.Application.ControlData.ByteSpan.ToArray();
- context.Memory.Write(position, nacpData);
- return ResultCode.Success;
- }
- }
- }
|