diff options
author | Tim Janik <timj@gtk.org> | 1998-08-21 02:22:06 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-08-21 02:22:06 +0000 |
commit | a7b3b116a994a75ac7610dab5de5840de73938e7 (patch) | |
tree | 691686df622cdf17461f841e63e0ae6ade2553cb /gtk/gtkmain.h | |
parent | 29d8fe021bff60e4cdfbe977fd7dc462a5d3a711 (diff) | |
download | gtk+-a7b3b116a994a75ac7610dab5de5840de73938e7.tar.gz |
added a function to perform a binary version check, returning a static
Fri Aug 21 02:31:26 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmain.h:
* gtk/gtkmain.c (gtk_check_version): added a function to perform a
binary version check, returning a static string for error descriptions,
or NULL on success.
Diffstat (limited to 'gtk/gtkmain.h')
-rw-r--r-- | gtk/gtkmain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkmain.h b/gtk/gtkmain.h index 05aa261ac1..074f7ed03f 100644 --- a/gtk/gtkmain.h +++ b/gtk/gtkmain.h @@ -47,6 +47,9 @@ extern const guint gtk_minor_version; extern const guint gtk_micro_version; extern const guint gtk_binary_age; extern const guint gtk_interface_age; +gchar* gtk_check_version (guint required_major, + guint required_minor, + guint required_micro); /* Initialization, exit, mainloop and miscellaneous routines |