- Timestamp:
- Apr 3, 2001, 8:27:26 PM (24 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/KERNEL32.DEF
r5425 r5458 1 ; $Id: KERNEL32.DEF,v 1.10 0 2001-04-01 14:33:49sandervl Exp $1 ; $Id: KERNEL32.DEF,v 1.101 2001-04-03 18:27:25 sandervl Exp $ 2 2 3 3 ;Basis is Windows95 KERNEL32 … … 1146 1146 CPUFeatures @2005 NONAME 1147 1147 1148 _toupperW@4 @2006 NONAME 1149 _tolowerW@4 @2007 NONAME 1150 1148 1151 _InitializeTIB@4 @2010 NONAME 1149 1152 _DestroyTIB@0 @2011 NONAME -
trunk/src/kernel32/codepage.cpp
r5457 r5458 496 496 return GetStringTypeW( type, src, count, chartype ); 497 497 } 498 499 WCHAR WIN32API tolowerW( WCHAR ch ) 500 { 501 extern const WCHAR casemap_lower[]; 502 return ch + casemap_lower[casemap_lower[ch >> 8] + (ch & 0xff)]; 503 } 504 505 WCHAR 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 4 4 #include "wine/unicode.h" 5 5 6 const WCHAR casemap_lower[3328] =6 extern const WCHAR casemap_lower[3328] = 7 7 { 8 8 /* index */ … … 436 436 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000 437 437 }; 438 const WCHAR casemap_upper[3328] =438 extern const WCHAR casemap_upper[3328] = 439 439 { 440 440 /* index */
Note:
See TracChangeset
for help on using the changeset viewer.