00001 // $Id: globals.cpp,v 1.4 2000/10/15 07:05:23 eldamitri Exp $ 00002 00003 // id3lib: a C++ library for creating and manipulating id3v1/v2 tags 00004 // Copyright 1999, 2000 Scott Thomas Haug 00005 00006 // This library is free software; you can redistribute it and/or modify it 00007 // under the terms of the GNU Library General Public License as published by 00008 // the Free Software Foundation; either version 2 of the License, or (at your 00009 // option) any later version. 00010 // 00011 // This library is distributed in the hope that it will be useful, but WITHOUT 00012 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00013 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00014 // License for more details. 00015 // 00016 // You should have received a copy of the GNU Library General Public License 00017 // along with this library; if not, write to the Free Software Foundation, 00018 // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 00020 // The id3lib authors encourage improvements and optimisations to be sent to 00021 // the id3lib coordinator. Please see the README file for details on where to 00022 // send such submissions. See the AUTHORS file for a list of people who have 00023 // contributed to id3lib. See the ChangeLog file for a list of changes to 00024 // id3lib. These files are distributed with id3lib at 00025 // http://download.sourceforge.net/id3lib/ 00026 00027 #include "globals.h" 00028 00029 #if defined HAVE_CONFIG_H 00030 #include <config.h> 00031 #endif 00032 00033 #ifdef _cplusplus 00034 extern "C" 00035 { 00036 #endif 00037 00038 const char * const ID3LIB_NAME = _ID3LIB_NAME; 00039 const char * const ID3LIB_VERSION = _ID3LIB_VERSION; 00040 const char * const ID3LIB_FULL_NAME = _ID3LIB_FULLNAME; 00041 const int ID3LIB_MAJOR_VERSION = _ID3LIB_MAJOR_VERSION; 00042 const int ID3LIB_MINOR_VERSION = _ID3LIB_MINOR_VERSION; 00043 const int ID3LIB_PATCH_VERSION = _ID3LIB_PATCH_VERSION; 00044 const int ID3LIB_INTERFACE_AGE = _ID3LIB_INTERFACE_AGE; 00045 const int ID3LIB_BINARY_AGE = _ID3LIB_BINARY_AGE; 00046 00047 #ifdef _cplusplus 00048 } 00049 #endif