blob: 44949597c85558be7ef5d2e2bd118fa00bb7952c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
{
[StructLayout(LayoutKind.Sequential, Size = 8, Pack = 4)]
struct NvHostChannelCmdBuf
{
public int MemoryId;
public int Offset;
public int WordsCount;
}
}
|