Changeset 5458 for trunk/src


Ignore:
Timestamp:
Apr 3, 2001, 8:27:26 PM (24 years ago)
Author:
sandervl
Message:

updates

Location:
trunk/src/kernel32
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.DEF

    r5425 r5458  
    1 ; $Id: KERNEL32.DEF,v 1.100 2001-04-01 14:33:49 sandervl Exp $
     1; $Id: KERNEL32.DEF,v 1.101 2001-04-03 18:27:25 sandervl Exp $
    22
    33;Basis is Windows95 KERNEL32
     
    11461146    CPUFeatures                                                   @2005 NONAME
    11471147
     1148    _toupperW@4                                                   @2006 NONAME
     1149    _tolowerW@4                                                   @2007 NONAME
     1150
    11481151    _InitializeTIB@4                                              @2010 NONAME
    11491152    _DestroyTIB@0                                                 @2011 NONAME
  • trunk/src/kernel32/codepage.cpp

    r5457 r5458  
    496496    return GetStringTypeW( type, src, count, chartype );
    497497}
     498
     499WCHAR WIN32API tolowerW( WCHAR ch )
     500{
     501    extern const WCHAR casemap_lower[];
     502    return ch + casemap_lower[casemap_lower[ch >> 8] + (ch & 0xff)];
     503}
     504
     505WCHAR WIN32API toupperW( WCHAR ch )
     506{
     507    extern const WCHAR casemap_upper[];
     508    return ch + casemap_upper[casemap_upper[ch >> 8] + (ch & 0xff)];
     509}
  • trunk/src/kernel32/unicode/casemap.c

    r5450 r5458  
    44#include "wine/unicode.h"
    55
    6 const WCHAR casemap_lower[3328] =
     6extern const WCHAR casemap_lower[3328] =
    77{
    88    /* index */
     
    436436    0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
    437437};
    438 const WCHAR casemap_upper[3328] =
     438extern const WCHAR casemap_upper[3328] =
    439439{
    440440    /* index */
Note: See TracChangeset for help on using the changeset viewer.