Changeset 372 for trunk/src/emx/include/unidef.h
- Timestamp:
- Jul 14, 2003, 4:04:03 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/unidef.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r371 r372 65 65 66 66 /* Locale conventions structure */ 67 struct UniLconv67 typedef struct UniLconv 68 68 { 69 69 UniChar *decimal_point; /* non-monetary decimal point */ … … 90 90 UniChar *left_parenthesis; /* negative-valued monetary sym - "(" */ 91 91 UniChar *right_parenthesis; /* negative-valued monetary sym - ")" */ 92 }; 92 } UNILCONV; 93 94 /* Char/String Type (QueryCharType and UniQueryStringType). */ 95 typedef struct UniCType { 96 unsigned short itype; 97 char bidi; 98 char charset; 99 unsigned short extend; 100 unsigned short codepage; 101 } UNICTYPE; 102 93 103 94 104 /* Locale Management Function Prototypes */ … … 193 203 int APIENTRY UniMapCtryToLocale (unsigned long Country, UniChar *LocaleName, size_t n); 194 204 205 /* Locale independent character classification. */ 206 int APIENTRY UniQueryChar (UniChar uc, unsigned long attr); 207 unsigned long APIENTRY UniQueryAttr (UniChar * name); 208 unsigned long APIENTRY UniQueryStringType (UniChar * ustr, int size, unsigned short *outstr, int kind); 209 struct UniCType*APIENTRY UniQueryCharType (UniChar uchr); 210 unsigned long APIENTRY UniQueryCharTypeTable (unsigned long * count, struct UniCType **unictype); 211 int APIENTRY UniQueryNumericValue (UniChar uc); 212 213 /* Functions for user locals designed to be used by WPShell (local object). */ 214 int APIENTRY UniSetUserLocaleItem (UniChar * locale, int item, int type, void * value); 215 int APIENTRY UniMakeUserLocale (UniChar * name, UniChar * basename); 216 int APIENTRY UniDeleteUserLocale (UniChar * locale); 217 int APIENTRY UniCompleteUserLocale (void); 218 int APIENTRY UniQueryLocaleList (int, UniChar *, int); 219 int APIENTRY UniQueryLanguageName (UniChar *lang, UniChar *isolang, UniChar **infoitem); 220 int APIENTRY UniQueryCountryName (UniChar *country, UniChar *isolang, UniChar **infoitem); 221 222 195 223 #ifdef __cplusplus 196 224 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.