1XVaCreateNestedList(3) XLIB FUNCTIONS XVaCreateNestedList(3)
2
3
4
6 XVaCreateNestedList - allocate a nested variable argument list
7
9 typedef void * XVaNestedList;
10
11 XVaNestedList XVaCreateNestedList(int dummy, ...);
12
14 dummy Specifies an unused argument (required by ANSI C).
15
16 ... Specifies the variable length argument list.
17
19 The XVaCreateNestedList function allocates memory and copies its argu‐
20 ments into a single list pointer, which may be used as a value for
21 arguments requiring a list value. Any entries are copied as specified.
22 Data passed by reference is not copied; the caller must ensure data
23 remains valid for the lifetime of the nested list. The list should be
24 freed using XFree when it is no longer needed.
25
27 Xlib - C Language X Interface
28
29
30
31X Version 11 libX11 1.6.7 XVaCreateNestedList(3)