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/ModuleBase.cpp

    r1678 r2501  
    1 /* $Id: ModuleBase.cpp,v 1.1 1999-11-10 01:45:35 bird Exp $
     1/* $Id: ModuleBase.cpp,v 1.2 2000-01-22 18:21:01 bird Exp $
    22 *
    33 * ModuleBase - Implementetation.
     
    132132    return NO_ERROR;
    133133}
     134
     135
     136
     137/**
     138 * Applies relocation fixups to a page which is being loaded.
     139 * @returns    NO_ERROR on success?
     140 *             error code on error?
     141 * @param      pMTE           Pointer Module Table Entry.
     142 * @param      iObject        Index into the object table. (0-based)
     143 * @param      iPageTable     Index into the page table. (0-based)
     144 * @param      pvPage         Pointer to the page which is being loaded.
     145 * @param      ulPageAddress  Address of page.
     146 * @param      pvPTDA         Pointer to Per Task Data Aera
     147 * @remark     Stub.
     148 */
     149ULONG  ModuleBase::applyFixups(PMTE pMTE, ULONG iObject, ULONG iPageTable, PVOID pvPage,
     150                               ULONG ulPageAddress, PVOID pvPTDA)
     151{
     152    NOREF(pMTE);
     153    NOREF(iObject);
     154    NOREF(iPageTable);
     155    NOREF(pvPage);
     156    NOREF(ulPageAddress);
     157    NOREF(pvPTDA);
     158    return NO_ERROR;
     159}
     160
    134161
    135162
Note: See TracChangeset for help on using the changeset viewer.