summaryrefslogtreecommitdiff
path: root/exo/exo-config.c
blob: 749122e855881883a88e2066d225f77a4bfbf1ea (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*-
 * Copyright (c) 2004 os-cillation e.K.
 *
 * Written by Benedikt Meurer <benny@xfce.org>.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301 USA
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <exo/exo-config.h>
#include <exo/exo-alias.h>

/**
 * SECTION: exo-config
 * @title: Version Information
 * @short_description: Variables and macros to check the exo version
 * @include: exo/exo.h
 *
 * Exo provides version information, primarily useful in configure for
 * builds that have a configure script. Applications may use it to
 * check if a certain feature is available in the version of libexo
 * they are being built against or being linked with.
 **/

/**
 * exo_major_version:
 *
 * The major version number of the exo library (e.g. in exo 1.2.3 this is 1).
 *
 * This variable is in the library, and therefore represents the exo
 * library you have linked against. Contrast with the #EXO_MAJOR_VERSION
 * macro, which represents the major version of the libexo headers you
 * have included.
 **/
const guint exo_major_version = EXO_MAJOR_VERSION;

/**
 * exo_minor_version:
 *
 * The minor version number of the exo library (e.g. in exo 1.2.3 this is 2).
 *
 * This variable is in the library, and therefore represents the exo
 * library you have linked against. Contrast with the #EXO_MINOR_VERSION
 * macro, which represents the minor version of the libexo headers you
 * have included.
 **/
const guint exo_minor_version = EXO_MINOR_VERSION;

/**
 * exo_micro_version:
 *
 * The micro version number of the exo library (e.g. in exo 1.2.3 this is 3).
 *
 * This variable is in the library, and therefore represents the exo
 * library you have linked against. Contrast with the #EXO_MICRO_VERSION
 * macro, which represents the micro version of the libexo headers you
 * have included.
 **/
const guint exo_micro_version = EXO_MICRO_VERSION;



/**
 * exo_check_version:
 * @required_major : the required major version.
 * @required_minor : the required minor version.
 * @required_micro : the required micro version.
 *
 * Checks that the <systemitem class="library">exo</systemitem> library
 * in use is compatible with the given version. Generally you would pass in
 * the constants #EXO_MAJOR_VERSION, #EXO_MINOR_VERSION and #EXO_MICRO_VERSION
 * as the three arguments to this function; that produces
 * a check that the library in use is compatible with the version of
 * <systemitem class="library">exo</systemitem> the application was
 * compiled against.
 *
 * <example>
 * <title>Checking the runtime version of the exo library</title>
 * <programlisting>
 * const gchar *mismatch;
 * mismatch = exo_check_version (EXO_VERSION_MAJOR,
 *                               EXO_VERSION_MINOR,
 *                               EXO_VERSION_MICRO);
 * if (G_UNLIKELY (mismatch != NULL))
 *   g_error ("Version mismatch: %<!---->s", mismatch);
 * </programlisting>
 * </example>
 *
 * Returns: %NULL if the library is compatible with the given version,
 *          or a string describing the version mismatch. The returned
 *          string is owned by the library and must not be freed or
 *          modified by the caller.
 *
 * Since: 0.3.1
 **/
const gchar*
exo_check_version (guint required_major,
                   guint required_minor,
                   guint required_micro)
{
  return NULL;
}



#define __EXO_CONFIG_C__
#include <exo/exo-aliasdef.c>