1 /*
2  * madplay - MPEG audio decoder and player
3  * Copyright (C) 2000-2004 Robert Leslie
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  * $Id: version.h,v 1.31 2004/02/23 21:34:53 rob Exp $
20  */
21 
22 # ifndef VERSION_H
23 # define VERSION_H
24 
25 # include <stdio.h>
26 
27 # define MADPLAY_VERSION	"0.15.2 (beta)"
28 
29 # define MADPLAY_PUBLISHYEAR	"2000-2004"
30 # define MADPLAY_AUTHOR		"Robert Leslie"
31 # define MADPLAY_EMAIL		"rob@mars.org"
32 
33 extern char const madplay_version[];
34 extern char const madplay_copyright[];
35 extern char const madplay_author[];
36 extern char const madplay_build[];
37 
38 void ver_banner(FILE *);
39 void ver_version(FILE *);
40 void ver_license(FILE *);
41 
42 # endif
43