Changeset 3375 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Apr 15, 2000, 12:35:29 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r3160 r3375 1 /* $Id: wprocess.cpp,v 1.7 5 2000-03-18 19:49:44sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.76 2000-04-14 22:35:29 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 #include "winexebase.h" 24 24 #include "windllpeldr.h" 25 #include "winexepe 2lx.h"25 #include "winexepeldr.h" 26 26 #include "winfakepeldr.h" 27 27 #include <vmutex.h> … … 423 423 module = Win32DllBase::findModule((LPSTR)lpszLibFile); 424 424 if(module) { 425 if(module->isLxDll() && !module->isLoaded() && !fPe2Lx) {425 if(module->isLxDll() && !module->isLoaded() && fPeLoader) { 426 426 //can happen with i.e. wininet 427 427 //wininet depends on wsock32; when the app loads wsock32 afterwards … … 449 449 { 450 450 module = Win32DllBase::findModule(hDll); 451 if(module && module->isLxDll() && !fPe2Lx) {451 if(module && module->isLxDll() && fPeLoader) { 452 452 module->setLoadLibrary(); 453 453 module->AddRef();
Note:
See TracChangeset
for help on using the changeset viewer.