Files
2026-06-04 11:42:34 +02:00

30 lines
613 B
C#

using System;
namespace System.Reflection.Emit
{
// Token: 0x020001DF RID: 479
internal struct MonoWin32Resource
{
// Token: 0x0600189A RID: 6298 RVA: 0x0005E2B8 File Offset: 0x0005C4B8
public MonoWin32Resource(int res_type, int res_id, int lang_id, byte[] data)
{
this.res_type = res_type;
this.res_id = res_id;
this.lang_id = lang_id;
this.data = data;
}
// Token: 0x04000741 RID: 1857
public int res_type;
// Token: 0x04000742 RID: 1858
public int res_id;
// Token: 0x04000743 RID: 1859
public int lang_id;
// Token: 0x04000744 RID: 1860
public byte[] data;
}
}