Changeset 461 for trunk/src/kernel32/winimage.cpp
- Timestamp:
- Aug 10, 1999, 12:10:09 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimage.cpp
r281 r461 1 /* $Id: winimage.cpp,v 1. 5 1999-07-07 08:11:10 sandervlExp $ */1 /* $Id: winimage.cpp,v 1.6 1999-08-09 22:10:09 phaller Exp $ */ 2 2 3 3 /* … … 11 11 * 12 12 */ 13 13 14 #define INCL_DOSFILEMGR /* File Manager values */ 14 15 #define INCL_DOSMODULEMGR … … 18 19 #define INCL_WIN 19 20 #define INCL_BASE 20 #include <os2wrap.h> //Odin32 OS/2 api wrappers 21 #include <os2wrap.h> //Odin32 OS/2 api wrappers 22 21 23 #include <stdio.h> 22 24 #include <string.h> 23 25 #include <stdlib.h> 26 27 #include <odincrt.h> 28 24 29 #include <iostream.h> 25 30 #include <fstream.h> … … 138 143 DosFreeResource((PVOID)Win32Table); 139 144 140 while(winres) { 145 while(winres) 146 { 141 147 res = winres->next; 142 delete winres;148 ODIN_delete(winres); 143 149 winres = res; 144 150 } … … 301 307 continue; 302 308 } 303 if(IsImportSection(win32file, &psh[i])) 309 if(IsImportSection(win32file, &psh[i])) 304 310 { 305 311 int type = SECTION_IMPORT; … … 975 981 fout << "**********************************************************************" << endl; 976 982 WinDll = Win32Dll::findModule(pszCurModule); 977 if(WinDll == NULL) {//not found, so load it 983 if(WinDll == NULL) 984 { //not found, so load it 985 ODIN_FS_BEGIN 978 986 WinDll = new Win32Dll(pszCurModule); 987 ODIN_FS_END 979 988 980 989 if(WinDll == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.