source: trunk/kLdr/kLdrModPE.h@ 2985

Last change on this file since 2985 was 2857, checked in by bird, 19 years ago

Only the mapping left now.

  • Property svn:keywords set to Id
File size: 14.7 KB
Line 
1/* $Id: kLdrModPE.h 2857 2006-11-05 04:12:13Z bird $ */
2
3#ifndef __kLdrModPE_h__
4#define __kLdrModPE_h__
5
6
7/*******************************************************************************
8* Defined Constants And Macros *
9*******************************************************************************/
10#ifndef IMAGE_NT_SIGNATURE
11# define IMAGE_NT_SIGNATURE KLDRHLP_LE2H_U32('P' | ('E' << 8))
12#endif
13
14/* file header */
15#define IMAGE_FILE_MACHINE_I386 0x014c
16#define IMAGE_FILE_MACHINE_AMD64 0x8664
17
18#define IMAGE_FILE_RELOCS_STRIPPED 0x0001
19#define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002
20#define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004