mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:48:40 +00:00
12 lines
331 B
C#
12 lines
331 B
C#
|
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;
|
||
|
}
|
||
|
}
|