Changeset 1075 for trunk/src/kernel32/winimagepeldr.cpp
- Timestamp:
- Sep 28, 1999, 2:39:40 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagepeldr.cpp
r978 r1075 1 /* $Id: winimagepeldr.cpp,v 1. 2 1999-09-18 17:47:10 sandervlExp $ */1 /* $Id: winimagepeldr.cpp,v 1.3 1999-09-28 00:37:39 phaller Exp $ */ 2 2 3 3 /* … … 60 60 //****************************************************************************** 61 61 Win32PeLdrImage::Win32PeLdrImage(char *szFileName) : 62 Win32ImageBase(-1), 62 Win32ImageBase(-1), 63 63 nrsections(0), imageSize(0), 64 64 imageVirtBase(-1), realBaseAddress(0), imageVirtEnd(0), … … 714 714 import = (ULONG *)(impaddr - oh.ImageBase + realBaseAddress); 715 715 apiaddr = WinDll->getApi(ordinal); 716 if(apiaddr == 0) { 716 if(apiaddr == 0) 717 { 718 dprintf(("KERNEL32:Win32PeLdrImage - %s.%u not found\n", 719 WinDll->getName(), 720 ordinal)); 721 717 722 fout << "--->>> NOT FOUND!"; 718 723 *import = (ULONG)MissingApi; … … 729 734 import = (ULONG *)(impaddr - oh.ImageBase + realBaseAddress); 730 735 apiaddr = WinDll->getApi(impname); 731 if(apiaddr == 0) { 736 if(apiaddr == 0) 737 { 738 dprintf(("KERNEL32:Win32PeLdrImage - %s.%s not found\n", 739 WinDll->getName(), 740 impname)); 741 732 742 fout << "--->>> NOT FOUND!"; 733 743 *import = (ULONG)MissingApi; … … 1008 1018 if(WinDll == NULL) 1009 1019 { //not found, so load it 1010 if(isPEImage(pszCurModule) == FALSE) 1020 if(isPEImage(pszCurModule) == FALSE) 1011 1021 {//LX image, so let OS/2 do all the work for us 1012 1022 APIRET rc;
Note:
See TracChangeset
for help on using the changeset viewer.