]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
Use WM_INITMENUPOPUP
[wxWidgets.git] / include / wx / string.h
index 4b02daaeb17eff8dcb5f8cdef07759bed2429834..21aa8d60347c60934372e872a07f3cf7e606c7da 100644 (file)
@@ -121,7 +121,15 @@ inline size_t Strlen(const char *psz)
 // portable strcasecmp/_stricmp
 inline int Stricmp(const char *psz1, const char *psz2)
 {
-#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
+#if defined(__VISUALC__) && defined(__WXWINCE__)
+  register char c1, c2;
+  do {
+    c1 = tolower(*psz1++);
+    c2 = tolower(*psz2++);
+  } while ( c1 && (c1 == c2) );
+
+  return c1 - c2;
+#elif defined(__VISUALC__) || ( defined(__MWERKS__) && defined(__INTEL__) )
   return _stricmp(psz1, psz2);
 #elif defined(__SC__)
   return _stricmp(psz1, psz2);