1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 05:10:04 -06:00
ryujinx/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs

12 lines
268 B
C#
Raw Normal View History

2020-09-27 17:00:38 -05:00
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;
}
}