diff options
author | Damon Chaplin <damon@karuna.freeserve.co.uk> | 1999-09-22 21:30:57 +0000 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 1999-09-22 21:30:57 +0000 |
commit | 372c4d2627e4cb15a3bec51d051f4cc30afc5138 (patch) | |
tree | 47494baccbd01d820fd39a00182bc7502d3f646e /docs/reference/gtk/tmpl/gtkfeatures.sgml | |
parent | 9e7433487be556e130e8c14c6317eb6f04697330 (diff) | |
download | gtk+-372c4d2627e4cb15a3bec51d051f4cc30afc5138.tar.gz |
ran make templates, to fix problems with structs.
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.
Diffstat (limited to 'docs/reference/gtk/tmpl/gtkfeatures.sgml')
-rw-r--r-- | docs/reference/gtk/tmpl/gtkfeatures.sgml | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/docs/reference/gtk/tmpl/gtkfeatures.sgml b/docs/reference/gtk/tmpl/gtkfeatures.sgml index bf85207886..b1d62c4771 100644 --- a/docs/reference/gtk/tmpl/gtkfeatures.sgml +++ b/docs/reference/gtk/tmpl/gtkfeatures.sgml @@ -1,12 +1,14 @@ <!-- ##### SECTION Title ##### --> -Feature Test Macros +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 ##### --> @@ -16,19 +18,22 @@ Feature Test Macros <!-- ##### 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> @@ -46,12 +51,13 @@ Feature Test Macros <!-- ##### FUNCTION gtk_check_version ##### --> <para> - +Checks that the GTK+ library in use is compatable with the given version. </para> -@required_major: -@required_minor: -@required_micro: -@Returns: +@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. |