Changeset 6453 for trunk/src


Ignore:
Timestamp:
Aug 4, 2001, 5:29:39 PM (24 years ago)
Author:
sandervl
Message:

use toupperW

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:13 sandervl Exp $ */
     1/* $Id: crt_wc.cpp,v 1.5 2001-08-04 15:29:39 sandervl Exp $ */
    22
    33/*
     
    113113
    114114    if (!n) return 0;
    115     while ((--n > 0) && *str1 && (towupper(*str1) == towupper(*str2)))
     115    while ((--n > 0) && *str1 && (toupperW(*str1) == toupperW(*str2)))
    116116    {
    117117        str1++;
    118118        str2++;
    119119    }
    120     return towupper(*str1) - towupper(*str2);
     120    return toupperW(*str1) - toupperW(*str2);
    121121}
    122122
     
    178178       dwIndex--)
    179179  {
    180     towupper(str[dwIndex]);
     180    toupperW(str[dwIndex]);
    181181  }
    182182
     
    428428
    429429/*********************************************************************
    430  *                  towupper       (CRTDLL.491)
     430 *                  toupperW       (CRTDLL.491)
    431431 */
    432432WCHAR CDECL CRTDLL_towupper(WCHAR c)
     
    435435           c));
    436436
    437   return (towupper(c));
     437  return (toupperW(c));
    438438}
    439439
  • trunk/src/custombuild/guid.c

    r6401 r6453  
    1 /* $Id: guid.c,v 1.2 2001-07-29 19:02:35 sandervl Exp $ */
     1/* $Id: guid.c,v 1.3 2001-08-04 15:29:20 sandervl Exp $ */
    22#define ICOM_CINTERFACE 1
    33#include <odin.h>
     
    3636#include <wine/obj_shellbrowser.h>
    3737#include <wine/obj_serviceprovider.h>
    38 
     38#include <wine/unicode.h>
    3939
    4040/*********************************************************************
     
    4949        str2++;
    5050    }
    51     return towupper(*str1) - towupper(*str2);
     51    return toupperW(*str1) - toupperW(*str2);
    5252}
    5353
Note: See TracChangeset for help on using the changeset viewer.