什么是PE特征中的0x010f

时间:2016-01-06 15:39:46

标签: windows portable-executable

我的PE File的特征是010f

' 0100'意思是Image_File_32Bit_Machine

我不知道这是什么意思' 000f'?

0100000f -> 010f ..

帮助〜

1 个答案:

答案 0 :(得分:0)

答案可以在SDK include文件夹中的winnt.h中找到。 0x0F表示在特征中设置这些标志:

#define IMAGE_FILE_RELOCS_STRIPPED           0x0001  // Relocation info stripped from file.
#define IMAGE_FILE_EXECUTABLE_IMAGE          0x0002  // File is executable  (i.e. no unresolved externel references).
#define IMAGE_FILE_LINE_NUMS_STRIPPED        0x0004  // Line nunbers stripped from file.
#define IMAGE_FILE_LOCAL_SYMS_STRIPPED       0x0008  // Local symbols stripped from file.