NvHostChannelGetParamArg.cs 256 B

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