ApplicationErrorArg.cs 393 B

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