blob: 1dfedf2db5e2153888adb0b3d4c525199c3e9dd4 (
plain) (
blame)
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 = 0xc, Pack = 4)]
struct NvHostChannelMapBuffer
{
public int NumEntries;
public int DataAddress; //Ignored by the driver.
public bool AttachHostChDas;
}
}
|