Ignore:
Timestamp:
Aug 22, 2000, 5:00:22 AM (25 years ago)
Author:
bird
Message:

More code is completed.
Test stuff is broken. (Missing fake functions/variables for the new functions.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GRACE/src/win32k/ldr/ldr.cpp

    r4065 r4068  
    1 /* $Id: ldr.cpp,v 1.7.4.2 2000-08-21 22:59:39 bird Exp $
     1/* $Id: ldr.cpp,v 1.7.4.3 2000-08-22 03:00:20 bird Exp $
    22 *
    33 * ldr.cpp - Loader helpers.
     
    1414#define INCL_DOSERRORS
    1515#define INCL_NOPMAPI
    16 
     16#define INCL_OS2KRNL_SEM
    1717
    1818/*******************************************************************************
     
    238238    }
    239239
    240     /*
    241      * Increment the object counters.
    242      */
    243     switch (fFlags & MOD_TYPE_MASK)
    244     {
    245         case MOD_TYPE_PE2LX:  Pe2Lx::cLoadedModules++;
    246 #ifdef DEBUG
    247         /*case MOD_TYPE_ELF2LX: Elf2Lx::cElf2Lx++;*/
    248         default:
    249             kprintf(("addModule: fFlags don't have any MOD_TYPE_* (%x).\n", fFlags));
    250 #endif
    251     }
    252 
    253240    return NO_ERROR;
    254241}
     
    290277        case MOD_TYPE_PE2LX:
    291278            delete pMod->Data.pPe2Lx;
    292             Pe2Lx::cLoadedModules--;
    293279            break;
    294280/*
    295281        case MOD_TYPE_ELF2LX:
    296             Elf2Lx::cLoadedModules--;
    297282            break;
    298283*/
Note: See TracChangeset for help on using the changeset viewer.