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