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