ControllerSupportArgVPre7.cs 456 B

12345678910111213141516
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Applets
  3. {
  4. #pragma warning disable CS0649
  5. // (1.0.0+ version)
  6. [StructLayout(LayoutKind.Sequential, Pack=1)]
  7. unsafe struct ControllerSupportArgVPre7
  8. {
  9. public ControllerSupportArgHeader Header;
  10. public fixed uint IdentificationColor[4];
  11. public byte EnableExplainText;
  12. public fixed byte ExplainText[4 * 0x81];
  13. }
  14. #pragma warning restore CS0649
  15. }