1 /*
2  * info.h - Info about the VICE project, including the GPL.
3  *
4  * Written by
5  *  Ettore Perazzoli <ettore@comm2000.it>
6  *  Andreas Boose <viceteam@t-online.de>
7  *  Marco van den Heuvel <blackystardust68@yahoo.com>
8  *
9  * This file is part of VICE, the Versatile Commodore Emulator.
10  * See README for copyright notice.
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25  *  02111-1307  USA.
26  *
27  */
28 
29 #ifndef VICE_INFO_H
30 #define VICE_INFO_H
31 
32 extern const char info_license_text[];
33 extern const char info_contrib_text[];
34 extern const char info_warranty_text[];
35 
36 #if defined(USE_SDLUI) || defined(USE_SDLUI2)
37 
38 extern const char info_license_text40[];
39 extern const char info_warranty_text40[];
40 
41 #endif
42 
43 typedef struct vice_team_s {
44     char *years;
45     char *name;
46     char *emailname;
47 } vice_team_t;
48 
49 typedef struct vice_trans_s {
50     char *years;
51     char *name;
52     char *language;
53     char *emailname;
54 } vice_trans_t;
55 
56 extern vice_team_t core_team[];
57 extern vice_team_t ex_team[];
58 extern char *doc_team[];
59 extern vice_trans_t trans_team[];
60 
61 #endif
62