Ignore:
Timestamp:
Jul 30, 2002, 2:55:06 PM (23 years ago)
Author:
sandervl
Message:

PF: Unicode update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/ole2nls.c

    r8741 r8938  
    1 /* $Id: ole2nls.c,v 1.4 2002-06-21 08:36:40 sandervl Exp $
     1/* $Id: ole2nls.c,v 1.5 2002-07-30 12:55:06 sandervl Exp $
    22 *
    33 *  National Language Support library
     
    19021902  else
    19031903  {
    1904     WCHAR (* WINAPI f)(WCHAR) = NULL;
     1904    int (*f)(int)=identity;
    19051905
    19061906    if (dstlen==0)
     
    19131913
    19141914    if (mapflags & LCMAP_UPPERCASE)
    1915       f = toupperW;
     1915      f = toupper;
    19161916    else if (mapflags & LCMAP_LOWERCASE)
    1917       f = tolowerW;
     1917      f = tolower;
    19181918    if (f)
    19191919    {
Note: See TracChangeset for help on using the changeset viewer.