// dnlib: See LICENSE.txt for more info
using System;
namespace dnlib.DotNet.MD {
///
/// See COMIMAGE_FLAGS_XXX in CorHdr.h in the Windows SDK
///
[Flags]
public enum ComImageFlags : uint {
///
/// See COMIMAGE_FLAGS_ILONLY in the Windows SDK
///
ILOnly = 1,
///
/// See COMIMAGE_FLAGS_32BITREQUIRED in the Windows SDK
///
Bit32Required = 2,
///
/// Set if a native header exists (COMIMAGE_FLAGS_IL_LIBRARY)
///
ILLibrary = 4,
///
/// See COMIMAGE_FLAGS_STRONGNAMESIGNED in the Windows SDK
///
StrongNameSigned = 8,
///
/// See COMIMAGE_FLAGS_NATIVE_ENTRYPOINT in the Windows SDK
///
NativeEntryPoint = 0x10,
///
/// See COMIMAGE_FLAGS_TRACKDEBUGDATA in the Windows SDK
///
TrackDebugData = 0x10000,
///
/// See COMIMAGE_FLAGS_32BITPREFERRED in the Windows SDK
///
Bit32Preferred = 0x20000,
}
}