12 lines
286 B
C#
12 lines
286 B
C#
|
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;
|
||
|
}
|
||
|
}
|