Changeset 4555 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Nov 5, 2000, 2:40:47 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r4523 r4555 1 /* $Id: wprocess.cpp,v 1.10 6 2000-10-23 13:42:47 sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.107 2000-11-05 13:40:47 sandervl Exp $ */ 2 2 3 3 /* … … 791 791 * Endif 792 792 */ 793 //only call O pen32 if LX binary or win32k process793 //only call OS/2 if LX binary or win32k process 794 794 if(!fPeLoader || fPE != ERROR_SUCCESS) 795 795 { 796 hDll = O 32_LoadLibrary(szModname);796 hDll = OSLibDosLoadModule(szModname); 797 797 if (hDll) 798 798 { … … 818 818 return hDll; //happens when LoadLibrary is called in kernel32's initterm (nor harmful) 819 819 820 dprintf(("KERNEL32: LoadLibraryExA(%s, 0x%x, 0x%x): returns 0x%x. Loaded %s using O32_LoadLibrary.",820 dprintf(("KERNEL32: LoadLibraryExA(%s, 0x%x, 0x%x): returns 0x%x. Loaded %s using DosLoadModule.", 821 821 lpszLibFile, hFile, dwFlags, hDll, szModname)); 822 822 return pModule->getInstanceHandle(); 823 823 } 824 dprintf(("KERNEL32: LoadLibraryExA(%s, 0x%x, 0x%x): O32_LoadLibrary(%s) failed. LastError=%d",824 dprintf(("KERNEL32: LoadLibraryExA(%s, 0x%x, 0x%x): DosLoadModule (%s) failed. LastError=%d", 825 825 lpszLibFile, hFile, dwFlags, szModname, GetLastError())); 826 826 }
Note:
See TracChangeset
for help on using the changeset viewer.