1XmRenderTableCopy(library call) XmRenderTableCopy(library call)
2
3
4
6 XmRenderTableCopy — A render table function that copies renditions
7
9 #include <Xm/Xm.h>
10 XmRenderTable XmRenderTableCopy(
11 XmRenderTable table,
12 XmStringTag *tags,
13 int tag_count);
14
16 XmRenderTableCopy creates a new render table which will contain the
17 renditions of the table whose tags match those in tags.
18
19 table Specifies the table containing the renditions to be copied.
20
21 tags Specifies an array of tags, whose corresponding renditions
22 are to be copied. NULL indicates that the complete table
23 should be copied.
24
25 tag_count Specifies the number of tags in tags.
26
28 Returns NULL if table is NULL. Otherwise, this function returns the new
29 render table. This function allocates space to hold the new render ta‐
30 ble. The application is responsible for managing this allocated space.
31 The application can recover this allocated space by calling XmRen‐
32 derTableFree.
33
35 XmRendition(3) and XmRenderTableFree(3).
36
37
38
39 XmRenderTableCopy(library call)