* Horizon: Implement arp:r and arp:w services * Fix formatting * Remove HLE arp services * Revert "Remove HLE arp services" This reverts commit c576fcccadb963db56b96bacabd1c1ac7abfb1ab. * Keep LibHac impl since it's used in bcat * Addresses gdkchan's feedback * ArpApi in PrepoIpcServer and remove LmApi * Fix 2 * Fixes ArpApi init * Fix encoding * Update PrepoService.cs * Fix prepo
22 lines
575 B
C#
22 lines
575 B
C#
using Ryujinx.Horizon.Sdk.Sf.Hipc;
|
|
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
ref struct CmifRequest
|
|
{
|
|
public HipcMessageData Hipc;
|
|
public Span<byte> Data;
|
|
public Span<ushort> OutPointerSizes;
|
|
public Span<uint> Objects;
|
|
public int ServerPointerSize;
|
|
public int CurrentInPointerId;
|
|
public int SendBufferIndex;
|
|
public int RecvBufferIndex;
|
|
public int ExchBufferIndex;
|
|
public int SendStaticIndex;
|
|
public int RecvListIndex;
|
|
public int OutPointerSizeIndex;
|
|
}
|
|
}
|