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