This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
using System;
namespace System.Resources
{
// Token: 0x0200028B RID: 651
internal class ICONDIRENTRY
{
// Token: 0x060020D8 RID: 8408 RVA: 0x00078920 File Offset: 0x00076B20
public override string ToString()
{
return string.Concat(new object[] { "ICONDIRENTRY (", this.bWidth, "x", this.bHeight, " ", this.wBitCount, " bpp)" });
}
// Token: 0x04000BB7 RID: 2999
public byte bWidth;
// Token: 0x04000BB8 RID: 3000
public byte bHeight;
// Token: 0x04000BB9 RID: 3001
public byte bColorCount;
// Token: 0x04000BBA RID: 3002
public byte bReserved;
// Token: 0x04000BBB RID: 3003
public short wPlanes;
// Token: 0x04000BBC RID: 3004
public short wBitCount;
// Token: 0x04000BBD RID: 3005
public int dwBytesInRes;
// Token: 0x04000BBE RID: 3006
public int dwImageOffset;
// Token: 0x04000BBF RID: 3007
public byte[] image;
}
}