/ src / Ryujinx.HLE / HOS / Applets / Error / ErrorCommonArg.cs
ErrorCommonArg.cs
 1  using System.Runtime.InteropServices;
 2  
 3  namespace Ryujinx.HLE.HOS.Applets.Error
 4  {
 5      [StructLayout(LayoutKind.Sequential, Pack = 1)]
 6      struct ErrorCommonArg
 7      {
 8          public uint Module;
 9          public uint Description;
10          public uint ResultCode;
11      }
12  }