/* This file is the public GEGL API * * GEGL is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * GEGL 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with GEGL; if not, see . * * 2000-2008 © Calvin Williamson, Øyvind Kolås. */ #ifndef __GEGL_VERSION_H__ #define __GEGL_VERSION_H__ /*** * GEGL version information: * * These macros tell the version of GEGL you are compiling against. * GEGL's version number consists of three parts: major, minor and * micro. * * ---Code sample: * #define GEGL_MAJOR_VERSION 0 * #define GEGL_MINOR_VERSION 2 * #define GEGL_MICRO_VERSION 0 */ #define GEGL_MAJOR_VERSION 0 #define GEGL_MINOR_VERSION 2 #define GEGL_MICRO_VERSION 0 /** * gegl_get_version: * @major: a pointer to a int where the major version number will be stored * @minor: ditto for the minor version number * @micro: ditto for the micro version number * * This function fetches the version of the GEGL library being used by * the running process. */ void gegl_get_version (int *major, int *minor, int *micro); #endif