Ignore:
Timestamp:
Nov 24, 1999, 8:52:34 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/winimagepeldr.cpp

    r1833 r1835  
    1 /* $Id: winimagepeldr.cpp,v 1.15 1999-11-24 19:31:23 sandervl Exp $ */
     1/* $Id: winimagepeldr.cpp,v 1.16 1999-11-24 19:52:34 sandervl Exp $ */
    22
    33/*
     
    8484  strupr(szFileName);
    8585  if(isExe) {
     86        if(!strchr(szFileName, '.')) {
     87                strcat(szFileName,".EXE");
     88        }
    8689        dllfile = OSLibDosOpen(szFileName, OSLIB_ACCESS_READONLY|OSLIB_ACCESS_SHAREDENYNONE);
    8790        if(dllfile == NULL) {
     
    9396  }
    9497  else {
     98        if(!strchr(szFileName, '.')) {
     99                strcat(szFileName,".DLL");
     100        }
    95101        dllfile = OSLibDosOpen(szFileName, OSLIB_ACCESS_READONLY|OSLIB_ACCESS_SHAREDENYNONE);
    96102        if(dllfile == NULL) {//search in libpath for dll
Note: See TracChangeset for help on using the changeset viewer.