Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / lib / gtksheet / gtkextrafeatures.h
1 /* gtkextra - set of widgets for gtk+
2  * Copyright 1999-2001  Adrian E. Feiguin <feiguin@ifir.edu.ar>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef GTK_EXTRA_FEATURES_H
21 #define GTK_EXTRA_FEATURES_H
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif /* __cplusplus */
26
27
28 /* GtkExtra version.
29  */
30
31 #define GTKEXTRA_MAJOR_VERSION                  (2)
32 #define GTKEXTRA_MINOR_VERSION                  (1)
33 #define GTKEXTRA_MICRO_VERSION                  (1)
34 #define GTKEXTRA_BINARY_AGE                     (0)
35 #define GTKEXTRA_INTERFACE_AGE                  (0)
36 #define GTKEXTRA_CHECK_VERSION(major,minor,micro)    \
37    (GTKEXTRA_MAJOR_VERSION > (major) || \
38     (GTKEXTRA_MAJOR_VERSION == (major) && GTKEXTRA_MINOR_VERSION > (minor)) || \
39     (GTKEXTRA_MAJOR_VERSION == (major) && GTKEXTRA_MINOR_VERSION == (minor) && \
40      GTKEXTRA_MICRO_VERSION >= (micro)))
41
42
43 extern const guint gtkextra_major_version;
44 extern const guint gtkextra_minor_version;
45 extern const guint gtkextra_micro_version;
46 extern const guint gtkextra_binary_age;
47 extern const guint gtkextra_interface_age;
48 gchar* gtkextra_check_version (guint required_major,
49                                guint required_minor,
50                                guint required_micro);
51
52 #ifdef __cplusplus
53 }
54 #endif /* __cplusplus */
55
56
57 #endif /* GTK_EXTRA_FEATURES_H */