~ubuntu-branches/ubuntu/maverick/gimp/maverick-updates

« back to all changes in this revision

Viewing changes to libgimpbase/gimpversion.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-09 19:44:52 UTC
  • Revision ID: james.westby@ubuntu.com-20051209194452-yggpemjlofpjqyf4
Tags: upstream-2.2.9
ImportĀ upstreamĀ versionĀ 2.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* gimpversion.h
 
2
 *
 
3
 * This is a generated file.  Please modify 'configure.in'
 
4
 */
 
5
 
 
6
#ifndef __GIMP_VERSION_H__
 
7
#define __GIMP_VERSION_H__
 
8
 
 
9
G_BEGIN_DECLS
 
10
 
 
11
 
 
12
#define GIMP_MAJOR_VERSION                              (2)
 
13
#define GIMP_MINOR_VERSION                              (2)
 
14
#define GIMP_MICRO_VERSION                              (9)
 
15
#define GIMP_VERSION                                    "2.2.9"
 
16
#define GIMP_API_VERSION                                "2.0"
 
17
#define GIMP_CHECK_VERSION(major, minor, micro) \
 
18
    (GIMP_MAJOR_VERSION > (major) || \
 
19
     (GIMP_MAJOR_VERSION == (major) && GIMP_MINOR_VERSION > (minor)) || \
 
20
     (GIMP_MAJOR_VERSION == (major) && GIMP_MINOR_VERSION == (minor) && \
 
21
      GIMP_MICRO_VERSION >= (micro)))
 
22
 
 
23
 
 
24
G_END_DECLS
 
25
 
 
26
#endif /* __GIMP_VERSION_H__ */