1XmRepTypeGetNameList(library call) XmRepTypeGetNameList(library call)
2
3
4
6 XmRepTypeGetNameList — A representation type manager function that gen‐
7 erates a list of values for a representation type
8
10 #include <Xm/RepType.h>
11 String * XmRepTypeGetNameList(
12 XmRepTypeId rep_type_id,
13 Boolean use_uppercase_format);
14
16 XmRepTypeGetNameList generates a NULL-terminated list of the value
17 names associated with the specified representation type. Each value
18 name is a NULL-terminated string. This routine allocates memory for the
19 returned data. The application must free this memory using XtFree.
20
21 rep_type_id
22 Specifies the identification number of the representation
23 type.
24
25 use_uppercase_format
26 Specifies a Boolean value that controls the format of the
27 name list. If the value is True, each value name is in upper‐
28 case characters prefixed by Xm; if it is False, the names are
29 in lowercase characters.
30
32 Returns a pointer to an array of the value names.
33
35 XmRepTypeGetId(3), XmRepTypeGetRegistered(3), and XmRepTypeRegister(3).
36
37
38
39 XmRepTypeGetNameList(library call)