1 /* $Id$ */
2 /*****************************************************************************
3  * HTICK --- FTN Ticker / Request Processor
4  *****************************************************************************
5  * Copyright (C) 1999 by
6  *
7  * Gabriel Plutzar
8  *
9  * Fido:     2:31/1
10  * Internet: gabriel@hit.priv.at
11  *
12  * Vienna, Austria, Europe
13  *
14  * This file is part of HTICK, which is based on HPT by Matthias Tichy,
15  * 2:2432/605.14 2:2433/1245, mtt@tichy.de
16  *
17  * HTICK is free software; you can redistribute it and/or modify it
18  * under the terms of the GNU General Public License as published by the
19  * Free Software Foundation; either version 2, or (at your option) any
20  * later version.
21  *
22  * HTICK is distributed in the hope that it will be useful, but
23  * WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25  * General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with HTICK; see the file COPYING.  If not, write to the Free
29  * Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
30  *****************************************************************************/
31 
32 #ifndef HTICK_H
33 #define HTICK_H
34 
35 #define LogFileName	"htick.log"
36 
37 typedef enum exitCode { ex_OK, ex_Help, ex_Error } e_exitCode;
38 e_exitCode processCommandLine(int argc, char **argv);
39 void processConfig(void);
40 void Purge(void);
41 
42 #endif
43