2020-04-03 02:10:02 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
|
|
{
|
2020-05-10 16:02:41 +02:00
|
|
|
#pragma warning disable CS0649
|
2020-04-03 02:10:02 +02:00
|
|
|
struct ControllerSupportArgPrivate
|
|
|
|
{
|
|
|
|
public uint PrivateSize;
|
|
|
|
public uint ArgSize;
|
|
|
|
public byte Flag0;
|
|
|
|
public byte Flag1;
|
|
|
|
public ControllerSupportMode Mode;
|
|
|
|
public byte ControllerSupportCaller;
|
|
|
|
public uint NpadStyleSet;
|
|
|
|
public uint NpadJoyHoldType;
|
|
|
|
}
|
2020-05-10 16:02:41 +02:00
|
|
|
#pragma warning restore CS0649
|
2020-04-03 02:10:02 +02:00
|
|
|
}
|