1XmStringCreateLocalized(library call) XmStringCreateLocalized(library call)
2
3
4
6 XmStringCreateLocalized — A compound string function that creates a
7 compound string in the current locale
8
10 #include <Xm/Xm.h>
11 XmString XmStringCreateLocalized(
12 char *text);
13
15 XmStringCreateLocalized creates a compound string containing the speci‐
16 fied text in the current language environment. An identical compound
17 string would result from the function XmStringCreate called with
18 XmFONTLIST_DEFAULT_TAG explicitly as the tag component.
19
20 The function will allocate space to hold the returned compound string.
21 The application is responsible for managing the allocated space. The
22 application can recover the allocated space by calling XmStringFree.
23
24 text Specifies a NULL-terminated string of text encoded in the
25 current language environment to be used as the text component
26 of the compound string
27
29 Returns a new compound string.
30
32 XmStringCreate(3).
33
34
35
36 XmStringCreateLocalized(library call)