- Timestamp:
- Aug 4, 2001, 5:29:39 PM (24 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/crt_wc.cpp
r5090 r6453 1 /* $Id: crt_wc.cpp,v 1. 4 2001-02-11 10:33:13sandervl Exp $ */1 /* $Id: crt_wc.cpp,v 1.5 2001-08-04 15:29:39 sandervl Exp $ */ 2 2 3 3 /* … … 113 113 114 114 if (!n) return 0; 115 while ((--n > 0) && *str1 && (to wupper(*str1) == towupper(*str2)))115 while ((--n > 0) && *str1 && (toupperW(*str1) == toupperW(*str2))) 116 116 { 117 117 str1++; 118 118 str2++; 119 119 } 120 return to wupper(*str1) - towupper(*str2);120 return toupperW(*str1) - toupperW(*str2); 121 121 } 122 122 … … 178 178 dwIndex--) 179 179 { 180 to wupper(str[dwIndex]);180 toupperW(str[dwIndex]); 181 181 } 182 182 … … 428 428 429 429 /********************************************************************* 430 * to wupper(CRTDLL.491)430 * toupperW (CRTDLL.491) 431 431 */ 432 432 WCHAR CDECL CRTDLL_towupper(WCHAR c) … … 435 435 c)); 436 436 437 return (to wupper(c));437 return (toupperW(c)); 438 438 } 439 439 -
trunk/src/custombuild/guid.c
r6401 r6453 1 /* $Id: guid.c,v 1. 2 2001-07-29 19:02:35sandervl Exp $ */1 /* $Id: guid.c,v 1.3 2001-08-04 15:29:20 sandervl Exp $ */ 2 2 #define ICOM_CINTERFACE 1 3 3 #include <odin.h> … … 36 36 #include <wine/obj_shellbrowser.h> 37 37 #include <wine/obj_serviceprovider.h> 38 38 #include <wine/unicode.h> 39 39 40 40 /********************************************************************* … … 49 49 str2++; 50 50 } 51 return to wupper(*str1) - towupper(*str2);51 return toupperW(*str1) - toupperW(*str2); 52 52 } 53 53
Note:
See TracChangeset
for help on using the changeset viewer.