id3lib  3.8.3
globals.cpp
Go to the documentation of this file.
1 // $Id: globals.cpp,v 1.6 2002/07/02 22:12:57 t1mpy Exp $
2 
3 // id3lib: a C++ library for creating and manipulating id3v1/v2 tags
4 // Copyright 1999, 2000 Scott Thomas Haug
5 
6 // This library is free software; you can redistribute it and/or modify it
7 // under the terms of the GNU Library General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or (at your
9 // option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful, but WITHOUT
12 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
14 // License for more details.
15 //
16 // You should have received a copy of the GNU Library General Public License
17 // along with this library; if not, write to the Free Software Foundation,
18 // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 
20 // The id3lib authors encourage improvements and optimisations to be sent to
21 // the id3lib coordinator. Please see the README file for details on where to
22 // send such submissions. See the AUTHORS file for a list of people who have
23 // contributed to id3lib. See the ChangeLog file for a list of changes to
24 // id3lib. These files are distributed with id3lib at
25 // http://download.sourceforge.net/id3lib/
26 
27 #include "id3/globals.h" //has <stdlib.h> "id3/sized_types.h"
28 
29 #if defined HAVE_CONFIG_H
30 #include <config.h>
31 #endif
32 
33 #ifdef _cplusplus
34 extern "C"
35 {
36 #endif
37 
38  const char * const ID3LIB_NAME = _ID3LIB_NAME;
39  const char * const ID3LIB_VERSION = _ID3LIB_VERSION;
40  const char * const ID3LIB_FULL_NAME = _ID3LIB_FULLNAME;
41  const int ID3LIB_MAJOR_VERSION = _ID3LIB_MAJOR_VERSION;
42  const int ID3LIB_MINOR_VERSION = _ID3LIB_MINOR_VERSION;
43  const int ID3LIB_PATCH_VERSION = _ID3LIB_PATCH_VERSION;
44  const int ID3LIB_INTERFACE_AGE = _ID3LIB_INTERFACE_AGE;
45  const int ID3LIB_BINARY_AGE = _ID3LIB_BINARY_AGE;
46 
47 #ifdef _cplusplus
48 }
49 #endif
50 
const int ID3LIB_BINARY_AGE
Definition: globals.cpp:45
const int ID3LIB_MAJOR_VERSION
Definition: globals.cpp:41
const int ID3LIB_MINOR_VERSION
Definition: globals.cpp:42
const char *const ID3LIB_VERSION
Definition: globals.cpp:39
const int ID3LIB_PATCH_VERSION
Definition: globals.cpp:43
const char *const ID3LIB_FULL_NAME
Definition: globals.cpp:40
const char *const ID3LIB_NAME
Definition: globals.cpp:38
const int ID3LIB_INTERFACE_AGE
Definition: globals.cpp:44