Changeset 21916 for trunk/src/kernel32/windllbase.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/kernel32/windllbase.cpp
r21308 r21916 27 27 #include <string.h> 28 28 #include <stdlib.h> 29 #ifndef __GNUC__ 29 30 #include <iostream.h> 30 31 #include <fstream.h> 32 #endif 31 33 #include <misc.h> 32 34 #include <win32api.h> 33 35 #include <pefile.h> 34 #include <windllbase.h>35 #include <winimagepe2lx.h>36 #include <windllpe2lx.h>37 #include <winimagelx.h>38 #include <windlllx.h>36 #include "windllbase.h" 37 #include "winimagepe2lx.h" 38 #include "windllpe2lx.h" 39 #include "winimagelx.h" 40 #include "windlllx.h" 39 41 #include <wprocess.h> 40 42 #include "exceptions.h" … … 726 728 char renameddll[CCHMAXPATH]; 727 729 char *namestart; 728 c har *sectionname;730 const char *sectionname; 729 731 730 732 if(fWinToOS2) { … … 791 793 dll = head; 792 794 while(dll) { 793 if(str cmpi(szDllName, dll->szModule) == 0) {795 if(stricmp(szDllName, dll->szModule) == 0) { 794 796 dlllistmutex.leave(); 795 797 return(dll);
Note:
See TracChangeset
for help on using the changeset viewer.