ErrorCommonHeader.cs
1 using System.Runtime.InteropServices; 2 3 namespace Ryujinx.HLE.HOS.Applets.Error 4 { 5 [StructLayout(LayoutKind.Sequential, Pack = 1)] 6 struct ErrorCommonHeader 7 { 8 public ErrorType Type; 9 public byte JumpFlag; 10 public byte ReservedFlag1; 11 public byte ReservedFlag2; 12 public byte ReservedFlag3; 13 public byte ContextFlag; 14 public byte MessageFlag; 15 public byte ContextFlag2; 16 } 17 }