summaryrefslogtreecommitdiff
path: root/docs/reference/gtk/tmpl/gtkfeatures.sgml
blob: b1d62c47718cb659567b6a30e19182e4db169c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!-- ##### SECTION Title ##### -->
Version Information

<!-- ##### SECTION Short_Description ##### -->
variables and functions to check the GTK+ version.

<!-- ##### SECTION Long_Description ##### -->
<para>
This section describes the variables and functions available to test the
version of the GTK+ library in use.
FIXME: probably merge with other general stuff.
</para>

<!-- ##### SECTION See_Also ##### -->
<para>

</para>

<!-- ##### VARIABLE gtk_major_version ##### -->
<para>
The major version number of the GTK+ library.
(e.g. in GTK+ version 1.2.5 this is 1.)
</para>


<!-- ##### VARIABLE gtk_minor_version ##### -->
<para>
The minor version number of the GTK+ library.
(e.g. in GTK+ version 1.2.5 this is 2.)
</para>


<!-- ##### VARIABLE gtk_micro_version ##### -->
<para>
The micro version number of the GTK+ library.
(e.g. in GTK+ version 1.2.5 this is 5.)
</para>


<!-- ##### VARIABLE gtk_binary_age ##### -->
<para>

</para>


<!-- ##### VARIABLE gtk_interface_age ##### -->
<para>

</para>


<!-- ##### FUNCTION gtk_check_version ##### -->
<para>
Checks that the GTK+ library in use is compatable with the given version.
</para>

@required_major: the required major version.
@required_minor: the required major version.
@required_micro: the required major version.
@Returns: NULL if the GTK+ library is compatable with the given version, or
a string describing the version mismatch.