Ignore:
Timestamp:
Nov 12, 2006, 1:39:49 PM (19 years ago)
Author:
bird
Message:

Module interpreter for modules loaded by the native loader. (untested)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrModPE.c

    r2869 r2877  
    4040/** @def KLDRMODPE_STRICT
    4141 * Define KLDRMODPE_STRICT to enabled strict checks in KLDRMODPE. */
    42 #define KLDRMOD_STRICT 1
     42#define KLDRMODPE_STRICT 1
    4343
    4444/** @def KLDRMODPE_ASSERT
     
    523523    PKLDRMODPE pModPE = (PKLDRMODPE)pMod->pvData;
    524524    int rc = 0;
    525     KLDRMODPE_ASSERT(pModPE->fMapped);
     525    KLDRMODPE_ASSERT(pModPE->pvMapping);
    526526
    527527    if (pMod->pRdr)
     
    741741            {
    742742#ifdef KLDRMODPE_STRICT /* Make sure the linker and we both did our job right. */
    743                 for (i = 0; i < pExpDir->NumberOfNames; i++)
     743                for (i = 0; i < (int32_t)pExpDir->NumberOfNames; i++)
    744744
    745745                {
Note: See TracChangeset for help on using the changeset viewer.