1 /*****************************************************************************
2  * HPUCODE --- Uuencoded files from FTN messagebase extractor
3  *****************************************************************************
4  * Copyright (C) 2002  Max Chernogor & Husky Team
5  *
6  * http://husky.sf.net
7  *
8  * This file is part of HUSKY fidonet package.
9  *
10  * HUSKY is free software; you can redistribute it and/or modify it
11  * under the terms of the GNU General Public License as published by the
12  * Free Software Foundation; either version 2, or (at your option) any
13  * later version.
14  *
15  * HUSKY is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with HPT; see the file COPYING.  If not, write to the Free
22  * Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23  *****************************************************************************/
24 /* $Id$ */
25 
26 
27 #ifndef VERSION_H
28 #define VERSION_H
29 
30 #include "cvsdate.h"
31 
32 /* basic version number */
33 #define VER_MAJOR 1
34 #define VER_MINOR 9
35 #define VER_PATCH 0
36 #define VER_BRANCH BRANCH_CURRENT
37 
38 extern char *versionStr;
39 
40 #endif
41