aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/CommonArguments.cs
blob: 5da34db1f54b4255f88c14afec0a5f337eaa7fd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Runtime.InteropServices;

namespace Ryujinx.HLE.HOS.Applets
{
    [StructLayout(LayoutKind.Sequential, Pack = 8)]
    struct CommonArguments
    {
        public uint  Version;
        public uint  StructureSize;
        public uint  AppletVersion;
        public uint  ThemeColor;
        [MarshalAs(UnmanagedType.I1)]
        public bool  PlayStartupSound;
        public ulong SystemTicks;
    }
}