/* * version.h - libInstPatch version information * * libInstPatch * Copyright (C) 1999-2002 Josh Green * * This program 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; version 2.1 * of the License only. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA or on the web at http://www.gnu.org. */ #ifndef __IPATCH_VERSION_H__ #define __IPATCH_VERSION_H__ /** * IPATCH_VERSION: (skip) * libInstPatch version static string. */ #define IPATCH_VERSION @IPATCH_VERSION@ /** * IPATCH_VERSION_MAJOR: (skip) * libInstPatch major version integer. */ #define IPATCH_VERSION_MAJOR @IPATCH_VERSION_MAJOR@ /** * IPATCH_VERSION_MINOR: (skip) * libInstPatch minor version integer. */ #define IPATCH_VERSION_MINOR @IPATCH_VERSION_MINOR@ /** * IPATCH_VERSION_MICRO: (skip) * libInstPatch micro version integer. */ #define IPATCH_VERSION_MICRO @IPATCH_VERSION_MICRO@ void ipatch_version (guint *major, guint *minor, guint *micro); #endif /* __IPATCH_VERSION_H__ */