Changeset 5262
- Timestamp:
- Feb 24, 2001, 1:59:44 PM (24 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/kernel32/windlllx.cpp ¶
r5075 r5262 1 /* $Id: windlllx.cpp,v 1.1 7 2001-02-09 18:31:05sandervl Exp $ */1 /* $Id: windlllx.cpp,v 1.18 2001-02-24 12:59:44 sandervl Exp $ */ 2 2 3 3 /* … … 69 69 return 0; 70 70 } 71 //Make sure DosLoadModule is called at least 72 //once for a dll (to make sure OS/2 doesn't unload the dll when it's 73 //still needed) 74 //testestest 71 dprintf(("RegisterLxDll %x %s", hInstance, szFileName)); 72 //Make sure DosLoadModule is called at least once for a dll (to make sure 73 //OS/2 doesn't unload the dll when it's still needed) 75 74 rc = DosLoadModule(szErrName, sizeof(szErrName), szFileName, &hInstance); 76 75 if(rc != 0) { … … 78 77 return 0; 79 78 } 80 //testestest 79 81 80 windll = new Win32LxDll(hInstance, EntryPoint, pResData, MajorImageVersion, 82 81 MinorImageVersion, Subsystem); -
TabularUnified trunk/src/kernel32/winexepeldr.cpp ¶
r4502 r5262 1 /* $Id: winexepeldr.cpp,v 1.1 4 2000-10-20 11:46:48sandervl Exp $ */1 /* $Id: winexepeldr.cpp,v 1.15 2001-02-24 12:59:44 sandervl Exp $ */ 2 2 3 3 /* … … 165 165 Win32PeLdrExe::~Win32PeLdrExe() 166 166 { 167 fExitProcess = TRUE; 167 168 } 168 169 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.