Changeset 5086 for trunk/src/win32k/pe2lx/pe2lx.cpp
- Timestamp:
- Feb 10, 2001, 12:11:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/pe2lx/pe2lx.cpp
r5050 r5086 1 /* $Id: pe2lx.cpp,v 1.2 4 2001-02-02 08:35:54bird Exp $1 /* $Id: pe2lx.cpp,v 1.25 2001-02-10 11:11:47 bird Exp $ 2 2 * 3 3 * Pe2Lx class implementation. Ring 0 and Ring 3 … … 17 17 #define FOR_EXEHDR 1 /* To make all object flags OBJ???. */ 18 18 #define INCL_DOSERRORS /* DOS Error codes. */ 19 #define INCL_OS2KRNL_LDR /* Loader definitions. */ 19 20 #ifdef RING0 20 21 #define INCL_NOAPI /* RING0: No apis. */ 21 22 #else /*RING3*/ 22 23 #define INCL_DOSPROCESS /* RING3: DosSleep. */ 24 #define INCL_OS2KRNL_LDR_NOAPIS /* No apis */ 23 25 #endif 24 26 … … 96 98 #include "OS2Krnl.h" /* kernel structs. (SFN) */ 97 99 #ifdef RING0 98 #include "ldrCalls.h" /* ldr* calls. (ldrRead) */99 100 #include "avl.h" /* AVL tree. (ldr.h need it) */ 100 101 #include "ldr.h" /* ldr helpers. (ldrGetExePath) */ … … 558 559 * alignment which is not a multiple of 64Kb. The sections are concatenated into one big object. */ 559 560 /* TODO! this test has to be enhanced a bit. WWPack32, new Borland++ depends on image layout. */ 560 fAllInOneObject = !isPEOneObjectDisabled() 561 fAllInOneObject = !isPEOneObjectDisabled() 561 562 && ( isPEOneObjectForced() 562 563 || (pNtHdrs->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED) == IMAGE_FILE_RELOCS_STRIPPED
Note:
See TracChangeset
for help on using the changeset viewer.