ErrorCommonHeader.cs 479 B

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