- Timestamp:
- May 22, 2001, 4:25:36 PM (24 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.cpp
r5128 r5782 1 /* $Id: windllbase.cpp,v 1.2 4 2001-02-14 10:36:45sandervl Exp $ */1 /* $Id: windllbase.cpp,v 1.25 2001-05-22 14:25:34 sandervl Exp $ */ 2 2 3 3 /* … … 252 252 //printDependencies(NULL); 253 253 #endif 254 254 255 dprintf(("Win32DllBase::Release %s referenced == 0", getModuleName())); 255 256 … … 414 415 } 415 416 416 dprintf(("attachProcess to dll %s", szModule));417 418 417 // @@@PH 2000/06/13 lpvReserved, Starcraft STORM.DLL 419 418 // if DLL_PROCESS_ATTACH, lpvReserved is NULL for dynamic loads … … 427 426 lpvReserved = (LPVOID)0xdeadface; // some arbitrary value 428 427 428 #ifdef DEBUG 429 int time1, time2; 430 dprintf(("attachProcess to dll %s", szModule)); 431 time1 = GetTickCount(); 432 #endif 433 429 434 rc = dllEntryPoint(hinstance, DLL_PROCESS_ATTACH, lpvReserved); 430 435 431 dprintf(("attachProcess to dll %s DONE", szModule)); 436 #ifdef DEBUG 437 time2 = GetTickCount(); 438 dprintf(("attachProcess to dll %s DONE in %x msec", szModule, time2-time1)); 439 #endif 432 440 433 441 if(fSetExceptionHandler) { -
trunk/src/kernel32/windlllx.cpp
r5262 r5782 1 /* $Id: windlllx.cpp,v 1.1 8 2001-02-24 12:59:44sandervl Exp $ */1 /* $Id: windlllx.cpp,v 1.19 2001-05-22 14:25:36 sandervl Exp $ */ 2 2 3 3 /* … … 123 123 modulename[modsize] = 0; 124 124 windlldep = Win32DllBase::findModule(modulename, TRUE); 125 if(windlldep ) {125 if(windlldep && strcmp(windlldep->getModuleName(), windll->getModuleName())) { 126 126 dprintf(("RegisterLxDll: Add dependency %s -> %s", windll->getModuleName(), modulename)); 127 127 windll->addDependency(windlldep); 128 128 } 129 else dprintf((" WARNING: Can't find dll %s referenced by %s", modulename, windll->getModuleName()));129 else dprintf(("HARMLESS WARNING: Can't find dll %s referenced by %s", modulename, windll->getModuleName())); 130 130 offset += modsize + 1; 131 131 }
Note:
See TracChangeset
for help on using the changeset viewer.