11 lines
256 B
C#
11 lines
256 B
C#
|
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;
|
||
|
}
|
||
|
}
|