mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
17 lines
439 B
C#
17 lines
439 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;
|
|||
|
}
|
|||
|
}
|