Changeset 5461 for trunk/src/kernel32


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

update

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/codepage.cpp

    r5458 r5461  
    508508    return ch + casemap_upper[casemap_upper[ch >> 8] + (ch & 0xff)];
    509509}
     510
     511/* the character type contains the C1_* flags in the low 12 bits */
     512/* and the C2_* type in the high 4 bits */
     513unsigned short get_char_typeW( WCHAR ch )
     514{
     515    extern const unsigned short wctype_table[];
     516    return wctype_table[wctype_table[ch >> 8] + (ch & 0xff)];
     517}
  • trunk/src/kernel32/unicode/wctype.c

    r5450 r5461  
    44#include "wine/unicode.h"
    55
    6 const unsigned short wctype_table[13824] =
     6extern const unsigned short wctype_table[13824] =
    77{
    88    /* offsets */
Note: See TracChangeset for help on using the changeset viewer.