1XkbFreeGeomOverlayRows(3) XKB FUNCTIONS XkbFreeGeomOverlayRows(3)
2
3
4
6 XkbFreeGeomOverlayRows - Free rows in an overlay
7
9 void XkbFreeGeomOverlayRows (XkbSectionPtr overlay, int first, int
10 count, Bool free_all);
11
13 overlay
14 section in which rows should be freed
15
16 first first row to be freed
17
18 count number of rows to be freed
19
20 free_all
21 True => all rows are freed
22
24 Xkb provides a number of functions to allocate and free subcomponents
25 of a keyboard geometry. Use these functions to create or modify key‐
26 board geometries. Note that these functions merely allocate space for
27 the new element(s), and it is up to you to fill in the values explic‐
28 itly in your code. These allocation functions increase sz_* but never
29 touch num_* (unless there is an allocation failure, in which case they
30 reset both sz_* and num_* to zero). These functions return Success if
31 they succeed, BadAlloc if they are not able to allocate space, or Bad‐
32 Value if a parameter is not as expected.
33
34 If free_all is True, all rows are freed regardless of the value of
35 first and count. Otherwise, the number of rows specified by count are
36 freed, beginning with the row specified by first in the specified over‐
37 lay.
38
40 Success The XkbFreeGeomOverlayRows function returns Success if
41 there are no allocation or argument errors.
42
44 BadAlloc Unable to allocate storage
45
46 BadValue An argument is out of range
47
48
49
50X Version 11 libX11 1.8.7 XkbFreeGeomOverlayRows(3)