forked from AuroraMiddleware/gtk
372c4d2627
1999-09-22 Damon Chaplin <damon@karuna.freeserve.co.uk> * gtk/tmpl/*.sgml: ran make templates, to fix problems with structs. * gtk/gtk-sections.txt: rearranged GtkCombo section. * gtk/tmpl/gtkvseparator.sgml: * gtk/tmpl/gtkhseparator.sgml: * gtk/tmpl/gtkgc.sgml: * gtk/tmpl/gtkfeatures.sgml: * gtk/tmpl/gtktipsquery.sgml: * gtk/tmpl/gtkitem.sgml: * gtk/tmpl/gtkinvisible.sgml: * gtk/tmpl/gtkgamma.sgml: * gtk/tmpl/gtkdata.sgml: * gtk/tmpl/gtkcurve.sgml: * gtk/tmpl/gtkcombo.sgml: * gtk/tmpl/gtkaccellabel.sgml: documented.
64 lines
1.4 KiB
Plaintext
64 lines
1.4 KiB
Plaintext
<!-- ##### 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.
|
|
|
|
|