CommonArguments.cs 417 B

12345678910111213141516
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Applets
  3. {
  4. [StructLayout(LayoutKind.Sequential, Pack = 8)]
  5. struct CommonArguments
  6. {
  7. public uint Version;
  8. public uint StructureSize;
  9. public uint AppletVersion;
  10. public uint ThemeColor;
  11. [MarshalAs(UnmanagedType.I1)]
  12. public bool PlayStartupSound;
  13. public ulong SystemTicks;
  14. }
  15. }