Changeset 1835 for trunk/src/kernel32/winimagepeldr.cpp
- Timestamp:
- Nov 24, 1999, 8:52:34 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagepeldr.cpp
r1833 r1835 1 /* $Id: winimagepeldr.cpp,v 1.1 5 1999-11-24 19:31:23sandervl Exp $ */1 /* $Id: winimagepeldr.cpp,v 1.16 1999-11-24 19:52:34 sandervl Exp $ */ 2 2 3 3 /* … … 84 84 strupr(szFileName); 85 85 if(isExe) { 86 if(!strchr(szFileName, '.')) { 87 strcat(szFileName,".EXE"); 88 } 86 89 dllfile = OSLibDosOpen(szFileName, OSLIB_ACCESS_READONLY|OSLIB_ACCESS_SHAREDENYNONE); 87 90 if(dllfile == NULL) { … … 93 96 } 94 97 else { 98 if(!strchr(szFileName, '.')) { 99 strcat(szFileName,".DLL"); 100 } 95 101 dllfile = OSLibDosOpen(szFileName, OSLIB_ACCESS_READONLY|OSLIB_ACCESS_SHAREDENYNONE); 96 102 if(dllfile == NULL) {//search in libpath for dll
Note:
See TracChangeset
for help on using the changeset viewer.