mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-07 00:17:44 +02:00
16 lines
436 B
C#
16 lines
436 B
C#
namespace Ryujinx.Horizon.Sdk.Sf.Hipc
|
|
{
|
|
struct HipcMetadata
|
|
{
|
|
public int Type;
|
|
public int SendStaticsCount;
|
|
public int SendBuffersCount;
|
|
public int ReceiveBuffersCount;
|
|
public int ExchangeBuffersCount;
|
|
public int DataWordsCount;
|
|
public int ReceiveStaticsCount;
|
|
public bool SendPid;
|
|
public int CopyHandlesCount;
|
|
public int MoveHandlesCount;
|
|
}
|
|
}
|