blob: 530a2ad8b083d2ba8c649e9401aa9596c35d350a (
plain) (
tree)
|
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Applets.Error
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct ErrorCommonArg
{
public uint Module;
public uint Description;
public uint ResultCode;
}
}
|