1XmFontListAppendEntry(library call) XmFontListAppendEntry(library call)
2
3
4
6 XmFontListAppendEntry — A font list function that appends an entry to a
7 font list
8
10 #include <Xm/Xm.h>
11 XmFontList XmFontListAppendEntry(
12 XmFontList oldlist,
13 XmFontListEntry entry);
14
16 XmFontListAppendEntry creates a new font list that contains the con‐
17 tents of oldlist. This function copies the contents of the font list
18 entry being added into this new font list. If oldlist is NULL,
19 XmFontListAppendEntry creates a new font list containing only the sin‐
20 gle entry specified.
21
22 This function deallocates the original font list after extracting the
23 required information. The caller must free the font list entry by using
24 XmFontListEntryFree.
25
26 oldlist Specifies the font list to be added to
27
28 entry Specifies the font list entry to be added
29
31 If entry is NULL, returns oldlist; otherwise, returns a new font list.
32
34 XmFontList(3), XmFontListEntryCreate(3), XmFontListEntryFree(3),
35 XmFontListEntryLoad(3), XmFontListFree(3), and XmFontListRemoveEn‐
36 try(3).
37
38
39
40 XmFontListAppendEntry(library call)