scripts
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user