ControllerSupportArgV7.cs 453 B

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