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