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

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/unicode.h

    r5459 r5461  
    7070{
    7171    return (table->info.char_size == 2) && (table->dbcs.cp2uni_leadbytes[ch]);
    72 }
    73 
    74 /* the character type contains the C1_* flags in the low 12 bits */
    75 /* and the C2_* type in the high 4 bits */
    76 static inline unsigned short get_char_typeW( WCHAR ch )
    77 {
    78     extern const unsigned short wctype_table[];
    79     return wctype_table[wctype_table[ch >> 8] + (ch & 0xff)];
    8072}
    8173
     
    184176extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n );
    185177extern WCHAR *strstrW( const WCHAR *str, const WCHAR *sub );
    186 
     178extern unsigned short get_char_typeW( WCHAR ch );
    187179
    188180#endif  /* __WINE_UNICODE_H */
Note: See TracChangeset for help on using the changeset viewer.