1XmCvtCTToXmString(library call) XmCvtCTToXmString(library call)
2
3
4
6 XmCvtCTToXmString — A compound string function that converts compound
7 text to a compound string
8
10 #include <Xm/Xm.h>
11 XmString XmCvtCTToXmString(
12 char * text);
13
15 XmCvtCTToXmString converts a (char *) string in compound text format to
16 a compound string. The application must call XtAppInitialize before
17 calling this function. Conversion of compound text to compound strings
18 is implementation dependent.
19
20 text Specifies a string in compound text format to be converted to
21 a compound string.
22
24 Returns a compound string derived from the compound text. The function
25 allocates space to hold the returned compound string. The application
26 is responsible for managing the allocated space. The application can
27 recover the allocated space by calling XmStringFree. The compound text
28 is assumed to be NULL-terminated; NULLs within the compound text are
29 handled correctly. The handling of HORIZONTAL TABULATION (HT) control
30 characters within the compound text is undefined. The compound text
31 format is described in the X Consortium Standard Compound Text Encod‐
32 ing.
33
35 XmCvtXmStringToCT(3).
36
37
38
39 XmCvtCTToXmString(library call)