ApplicationErrorArg.cs 379 B

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