scripts
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Reflection.Emit
|
||||
{
|
||||
/// <summary>Specifies the type of the portable executable (PE) file.</summary>
|
||||
// Token: 0x0200020F RID: 527
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public enum PEFileKinds
|
||||
{
|
||||
/// <summary>The portable executable (PE) file is a DLL.</summary>
|
||||
// Token: 0x04000955 RID: 2389
|
||||
Dll = 1,
|
||||
/// <summary>The application is a console (not a Windows-based) application.</summary>
|
||||
// Token: 0x04000956 RID: 2390
|
||||
ConsoleApplication,
|
||||
/// <summary>The application is a Windows-based application.</summary>
|
||||
// Token: 0x04000957 RID: 2391
|
||||
WindowApplication
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user