1999-05-29 05:56:04 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
1998-07-15 10:36:07 +08:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-07-15 10:36:07 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
1999-05-29 05:56:04 +08:00
|
|
|
* 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
|
1998-07-15 10:36:07 +08:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-07-15 10:36:07 +08:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1999-05-29 05:56:04 +08:00
|
|
|
*/
|
1998-07-15 10:36:07 +08:00
|
|
|
|
2001-05-22 08:36:38 +08:00
|
|
|
#ifndef __GIMP_VERSION_H__
|
|
|
|
#define __GIMP_VERSION_H__
|
1998-07-15 10:36:07 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
1998-07-15 10:36:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_MAJOR_VERSION (@GIMP_MAJOR_VERSION@)
|
|
|
|
#define GIMP_MINOR_VERSION (@GIMP_MINOR_VERSION@)
|
|
|
|
#define GIMP_MICRO_VERSION (@GIMP_MICRO_VERSION@)
|
|
|
|
#define GIMP_VERSION "@GIMP_VERSION@"
|
1999-04-13 15:09:33 +08:00
|
|
|
#define GIMP_CHECK_VERSION(major, minor, micro) \
|
|
|
|
(GIMP_MAJOR_VERSION > (major) || \
|
|
|
|
(GIMP_MAJOR_VERSION == (major) && GIMP_MINOR_VERSION > (minor)) || \
|
|
|
|
(GIMP_MAJOR_VERSION == (major) && GIMP_MINOR_VERSION == (minor) && \
|
|
|
|
GIMP_MICRO_VERSION >= (micro)))
|
1998-07-15 10:36:07 +08:00
|
|
|
|
2000-10-16 20:44:45 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
1998-07-15 10:36:07 +08:00
|
|
|
|
2001-05-22 08:36:38 +08:00
|
|
|
#endif /* __GIMP_VERSION_H__ */
|