diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelCmdBuf.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelCmdBuf.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelCmdBuf.cs b/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelCmdBuf.cs new file mode 100644 index 00000000..44949597 --- /dev/null +++ b/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelCmdBuf.cs @@ -0,0 +1,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; + } +}
\ No newline at end of file |
