Changeset 5461 for trunk/include/win/wine/unicode.h
- Timestamp:
- Apr 3, 2001, 8:42:42 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/unicode.h
r5459 r5461 70 70 { 71 71 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)];80 72 } 81 73 … … 184 176 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 185 177 extern WCHAR *strstrW( const WCHAR *str, const WCHAR *sub ); 186 178 extern unsigned short get_char_typeW( WCHAR ch ); 187 179 188 180 #endif /* __WINE_UNICODE_H */
Note:
See TracChangeset
for help on using the changeset viewer.