aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonHeader.cs
blob: d4f77d6eff1b543a2fc36d6e6de654d84de7a379 (plain) (tree)
1
2
3
4
5
6
7
8
                                     





                                                   





                                  
     
 
using System.Runtime.InteropServices;

namespace Ryujinx.HLE.HOS.Applets.Error
{
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    struct ErrorCommonHeader
    {
        public ErrorType Type;
        public byte JumpFlag;
        public byte ReservedFlag1;
        public byte ReservedFlag2;
        public byte ReservedFlag3;
        public byte ContextFlag;
        public byte MessageFlag;
        public byte ContextFlag2;
    }
}