305f06eb71
* Make all title id instances unsigned * Replace address and size with ulong instead of signed types Long overdue change. Also change some logics here and there to optimize with the new memory manager. * Address Ac_K's comments * Remove uneeded cast all around * Fixes some others misalignment
24 lines
No EOL
786 B
C#
24 lines
No EOL
786 B
C#
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;
|
|
}
|
|
}
|
|
} |