Changeset 1678 for trunk/src/win32k/ldr/ldr.cpp
- Timestamp:
- Nov 10, 1999, 2:45:38 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/ldr/ldr.cpp
r1535 r1678 1 /* $Id: ldr.cpp,v 1. 5 1999-10-31 23:57:05bird Exp $1 /* $Id: ldr.cpp,v 1.6 1999-11-10 01:45:36 bird Exp $ 2 2 * 3 3 * ldr.cpp - Loader helpers. 4 4 * 5 5 * Copyright (c) 1999 knut St. osmundsen 6 * 7 * Project Odin Software License can be found in LICENSE.TXT 6 8 * 7 9 */ … … 29 31 #include <exe386.h> 30 32 #include "OS2Krnl.h" 33 #include "ModuleBase.h" 31 34 #include "pe2lx.h" 32 35 #include "avl.h" … … 125 128 * @param pMTE Pointer to MTE. NULL is valid. 126 129 * @param fFlags Type flags for the fFlags field in the node. 127 * @param p vData Pointer to data.130 * @param pModObj Pointer to module object. 128 131 * @sketch DEBUG: check that the module doesn't exists and parameter check. 129 132 * (try) Allocate a new node. (return errorcode on failure) … … 135 138 * @author knut st. osmundsen 136 139 */ 137 ULONG addModule(SFN hFile, PMTE pMTE, ULONG fFlags, void *pvData)140 ULONG addModule(SFN hFile, PMTE pMTE, ULONG fFlags, ModuleBase *pModObj) 138 141 { 139 142 PMODULE pMod; … … 166 169 pMod->pMTE = pMTE; 167 170 pMod->fFlags = fFlags; 168 pMod->Data.p v = pvData;171 pMod->Data.pModule = pModObj; 169 172 170 173 /* insert the module node into the tree(s) */ … … 248 251 pMTERoot = NULL; 249 252 250 /* Pe2Lxlogging. */251 Pe2Lx::ulInfoLevel = options.ulInfoLevel;253 /* ModuleBase logging. */ 254 ModuleBase::ulInfoLevel = options.ulInfoLevel; 252 255 253 256 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.