ApplicationErrorArg.cs 359 B

12345678910111213
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Applets.Error
  3. {
  4. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  5. unsafe struct ApplicationErrorArg
  6. {
  7. public uint ErrorNumber;
  8. public ulong LanguageCode;
  9. public fixed byte MessageText[0x800];
  10. public fixed byte DetailsText[0x800];
  11. }
  12. }