Win32-PEFile
view release on metacpan or search on metacpan
lib/Win32/PEFile/PEConstants.pm view on Meta::CPAN
20 => 'VXD',
21 => 'ANICURSOR',
22 => 'ANIICON',
23 => 'HTML',
24 => 'MANIFEST',
);
# COFF Characteristics flags
our $kIMAGE_FILE_RELOCS_STRIPPED = 0x0001;
#Image only, Windows CE, and Windows NT® and later. This indicates that the
#file does not contain base relocations and must therefore be loaded at its
#preferred base address. If the base address is not available, the loader
#reports an error. The default behavior of the linker is to strip base
#relocations from executable (EXE) files.
our $kIMAGE_FILE_EXECUTABLE_IMAGE = 0x0002;
#Image only. This indicates that the image file is valid and can be run. If
#this flag is not set, it indicates a linker error.
our $kIMAGE_FILE_LINE_NUMS_STRIPPED = 0x0004;
#COFF line numbers have been removed. This flag is deprecated and should be
#zero.
our $kIMAGE_FILE_LOCAL_SYMS_STRIPPED = 0x0008;
#COFF symbol table entries for local symbols have been removed. This flag is
#deprecated and should be zero.
our $kIMAGE_FILE_AGGRESSIVE_WS_TRIM = 0x0010;
( run in 0.936 second using v1.01-cache-2.11-cpan-5511b514fd6 )