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
@@ -0,0 +1,22 @@
using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Identifies the platform targeted by an executable.</summary>
// Token: 0x02000244 RID: 580
[ComVisible(true)]
[Serializable]
public enum ImageFileMachine
{
/// <summary>Targets a 32-bit Intel processor.</summary>
// Token: 0x04000A58 RID: 2648
I386 = 332,
/// <summary>Targets a 64-bit Intel processor.</summary>
// Token: 0x04000A59 RID: 2649
IA64 = 512,
/// <summary>Targets a 64-bit AMD processor.</summary>
// Token: 0x04000A5A RID: 2650
AMD64 = 34404
}
}