mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:29:00 +00:00
24 lines
779 B
C#
24 lines
779 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
|||
|
{
|
|||
|
class IReadOnlyApplicationControlDataInterface : IpcService
|
|||
|
{
|
|||
|
public IReadOnlyApplicationControlDataInterface(ServiceCtx context) { }
|
|||
|
|
|||
|
[Command(0)]
|
|||
|
// GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>)
|
|||
|
public ResultCode GetApplicationControlData(ServiceCtx context)
|
|||
|
{
|
|||
|
byte source = (byte)context.RequestData.ReadInt64();
|
|||
|
ulong titleId = context.RequestData.ReadUInt64();
|
|||
|
|
|||
|
long position = context.Request.ReceiveBuff[0].Position;
|
|||
|
|
|||
|
byte[] nacpData = context.Device.System.ControlData.ByteSpan.ToArray();
|
|||
|
|
|||
|
context.Memory.WriteBytes(position, nacpData);
|
|||
|
|
|||
|
return ResultCode.Success;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|