/ src / Ryujinx.HLE / HOS / Applets / Controller / ControllerSupportArgPrivate.cs
ControllerSupportArgPrivate.cs
 1  namespace Ryujinx.HLE.HOS.Applets
 2  {
 3  #pragma warning disable CS0649 // Field is never assigned to
 4      struct ControllerSupportArgPrivate
 5      {
 6          public uint PrivateSize;
 7          public uint ArgSize;
 8          public byte Flag0;
 9          public byte Flag1;
10          public ControllerSupportMode Mode;
11          public byte ControllerSupportCaller;
12          public uint NpadStyleSet;
13          public uint NpadJoyHoldType;
14      }
15  #pragma warning restore CS0649
16  }