00001 /* 00002 version.h: 00003 00004 Copyright (C) 1995 John ffitch 00005 00006 This file is part of Csound. 00007 00008 The Csound Library is free software; you can redistribute it 00009 and/or modify it under the terms of the GNU Lesser General Public 00010 License as published by the Free Software Foundation; either 00011 version 2.1 of the License, or (at your option) any later version. 00012 00013 Csound is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU Lesser General Public License for more details. 00017 00018 You should have received a copy of the GNU Lesser General Public 00019 License along with Csound; if not, write to the Free Software 00020 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 00021 02111-1307 USA 00022 */ 00023 00024 #ifndef CSOUND_VERSION_H 00025 #define CSOUND_VERSION_H 00026 00027 /* Define to the full name of this package. */ 00028 #define CS_PACKAGE_NAME "Csound" 00029 00030 /* Define to the full name and version of this package. */ 00031 #define CS_PACKAGE_STRING "Csound 5.08" 00032 00033 /* Define to the one symbol short name of this package. */ 00034 #define CS_PACKAGE_TARNAME "csound" 00035 00036 /* Define to the version of this package. */ 00037 #define CS_PACKAGE_VERSION "5.08" 00038 #define CS_VERSION (5) 00039 #define CS_SUBVER (8) 00040 #define CS_PATCHLEVEL (2) 00041 00042 #define CS_APIVERSION 1 /* should be increased anytime a new version 00043 contains changes that an older host will 00044 not be able to handle -- most likely this 00045 will be a change to an API function or 00046 the CSOUND struct */ 00047 #define CS_APISUBVER 6 /* for minor changes that will still allow 00048 compatiblity with older hosts */ 00049 00050 #endif /* CSOUND_VERSION_H */ 00051