aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvHostChannelGetParamArg.cs
blob: 5c04e5d4b3fc87f76888c3bb909d6ef16c2a300c (plain) (blame)
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;
    }
}