Changeset 21726 for branches/gcc-kmk/src/kernel32
- Timestamp:
- Oct 19, 2011, 11:00:18 PM (14 years ago)
- Location:
- branches/gcc-kmk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/heapstring.cpp
r21725 r21726 446 446 return 1; 447 447 448 return str cmpi(arg1, arg2);448 return stricmp(arg1, arg2); 449 449 } 450 450 -
branches/gcc-kmk/src/kernel32/module.cpp
r7342 r21726 17 17 #include "dbglocal.h" 18 18 19 #define FILE_strcasecmp str cmpi19 #define FILE_strcasecmp stricmp 20 20 21 21 /* Check whether a file is an OS/2 or a very old Windows executable -
branches/gcc-kmk/src/kernel32/windllbase.cpp
r21716 r21726 791 791 dll = head; 792 792 while(dll) { 793 if(str cmpi(szDllName, dll->szModule) == 0) {793 if(stricmp(szDllName, dll->szModule) == 0) { 794 794 dlllistmutex.leave(); 795 795 return(dll);
Note:
See TracChangeset
for help on using the changeset viewer.