ErrorCommonArg.cs 268 B

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