MSVCRT: Impement minimal _stricoll

Uwe Bonnes bon at elektron.ikp.physik.tu-darmstadt.de
Sun May 22 11:55:13 CDT 2005


Changelog:
	dlls/msvcrt/string.c:
	Implement minimal _stricoll
-- 
Uwe Bonnes                bon at elektron.ikp.physik.tu-darmstadt.de

Institut fuer Kernphysik  Schlossgartenstrasse 9  64289 Darmstadt
--------- Tel. 06151 162516 -------- Fax. 06151 164321 ----------
Index: wine/dlls/msvcrt/msvcrt.spec
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/msvcrt.spec,v
retrieving revision 1.98
diff -u -w -r1.98 msvcrt.spec
--- wine/dlls/msvcrt/msvcrt.spec	14 May 2005 11:07:10 -0000	1.98
+++ wine/dlls/msvcrt/msvcrt.spec	22 May 2005 10:44:21 -0000
@@ -453,7 +453,7 @@
 @ cdecl _strdup(str)
 @ cdecl _strerror(long)
 @ cdecl _stricmp(str str) strcasecmp
-@ stub _stricoll #(str str)
+@ cdecl _stricoll(str str) MSVCRT__stricoll
 @ cdecl _strlwr(str) ntdll._strlwr
 @ stub _strncoll #(str str long)
 @ cdecl _strnicmp(str str long) strncasecmp
Index: wine/dlls/msvcrt/string.c
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/string.c,v
retrieving revision 1.10
diff -u -w -r1.10 string.c
--- wine/dlls/msvcrt/string.c	25 Jun 2004 01:19:15 -0000	1.10
+++ wine/dlls/msvcrt/string.c	22 May 2005 10:44:21 -0000
@@ -112,3 +112,13 @@
     }
   }
 }
+/*********************************************************************
+ *		_stricoll (MSVCRT.@)
+ */
+INT MSVCRT__stricoll( const char* str1, const char* str2 )
+{
+  /* FIXME: handle collates */
+  TRACE("str1 %s str2 %s\n", debugstr_a(str1), debugstr_a(str2));
+  return lstrcmpiA( str1, str2 );
+}
+



More information about the wine-patches mailing list