Ignore:
Timestamp:
Feb 10, 2001, 12:11:48 PM (25 years ago)
Author:
bird
Message:

Moved ldrCalls.h into the OS2Krnl.h tree as OS2KLDR.h.
Also moved the Ldr definitions from OS2Krnl.h and into OS2KLDR.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/pe2lx/pe2lx.cpp

    r5050 r5086  
    1 /* $Id: pe2lx.cpp,v 1.24 2001-02-02 08:35:54 bird Exp $
     1/* $Id: pe2lx.cpp,v 1.25 2001-02-10 11:11:47 bird Exp $
    22 *
    33 * Pe2Lx class implementation. Ring 0 and Ring 3
     
    1717#define FOR_EXEHDR 1                    /* To make all object flags OBJ???. */
    1818#define INCL_DOSERRORS                  /* DOS Error codes. */
     19#define INCL_OS2KRNL_LDR                /* Loader definitions. */
    1920#ifdef RING0
    2021    #define INCL_NOAPI                  /* RING0: No apis. */
    2122#else /*RING3*/
    2223    #define INCL_DOSPROCESS             /* RING3: DosSleep. */
     24    #define INCL_OS2KRNL_LDR_NOAPIS     /* No apis */
    2325#endif
    2426
     
    9698#include "OS2Krnl.h"                    /* kernel structs.  (SFN) */
    9799#ifdef RING0
    98     #include "ldrCalls.h"               /* ldr* calls. (ldrRead) */
    99100    #include "avl.h"                    /* AVL tree. (ldr.h need it) */
    100101    #include "ldr.h"                    /* ldr helpers. (ldrGetExePath) */
     
    558559     *    alignment which is not a multiple of 64Kb. The sections are concatenated into one big object. */
    559560    /* TODO! this test has to be enhanced a bit. WWPack32, new Borland++ depends on image layout. */
    560     fAllInOneObject =  !isPEOneObjectDisabled() 
     561    fAllInOneObject =  !isPEOneObjectDisabled()
    561562                       && (   isPEOneObjectForced()
    562563                           || (pNtHdrs->FileHeader.Characteristics & IMAGE_FILE_RELOCS_STRIPPED) == IMAGE_FILE_RELOCS_STRIPPED
Note: See TracChangeset for help on using the changeset viewer.