aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/CommonArguments.cs
blob: 0360aff80c6702889d764b4b31c7006ba7b7ef2f (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;
    }
}