Ignore:
Timestamp:
Jan 22, 2000, 7:21:03 PM (26 years ago)
Author:
bird
Message:

Temporary backup checkin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/ldr/myldrClose.cpp

    r1678 r2501  
    1 /* $Id: myldrClose.cpp,v 1.4 1999-11-10 01:45:36 bird Exp $
     1/* $Id: myldrClose.cpp,v 1.5 2000-01-22 18:21:02 bird Exp $
    22 *
    3  * myldrClose - _ldrClose
     3 * myldrClose - ldrClose
    44 *
    55 * Copyright (c) 1998-1999 knut st. osmundsen
     
    4141ULONG LDRCALL myldrClose(SFN hFile)
    4242{
    43     int rc;
    44 
    4543    /* closes handle */
    46     kprintf(("_ldrClose: hFile = %.4x\n", hFile));
     44    kprintf(("ldrClose: hFile = %.4x\n", hFile));
    4745    if (GetState(hFile) == HSTATE_OUR)
    4846    {
     47        APIRET rc;
     48
    4949        #ifdef DEBUG
    5050        PMODULE pMod = getModuleBySFN(hFile);
     
    5252            pMod->Data.pModule->dumpVirtualLxFile();
    5353        else
    54             kprintf(("_ldrClose: getModuleBySFN failed!!!"));
     54            kprintf(("ldrClose: getModuleBySFN failed!!!"));
    5555        #endif
    5656
    5757        rc = removeModule(hFile);
    5858        if (rc != NO_ERROR)
    59             kprintf(("_ldrClose: removeModule retured rc=%d\n", rc));
     59            kprintf(("ldrClose: removeModule retured rc=%d\n", rc));
    6060
     61        #pragma info(notrd)
    6162        SetState(hFile, HSTATE_UNUSED);
     63        #pragma info(restore)
    6264    }
    6365
    64     return _ldrClose(hFile);
     66    return ldrClose(hFile);
    6567}
Note: See TracChangeset for help on using the changeset viewer.