/*****************************************************************************
* HTICK --- FTN Ticker / Request Processor
*****************************************************************************
* Copyright (C) 1999 by
*
* Gabriel Plutzar
*
* Fido: 2:31/1
* Internet: gabriel@hit.priv.at
*
* Vienna, Austria, Europe
*
* This file is part of HTICK, which is based on HPT by Matthias Tichy,
* 2:2432/605.14 2:2433/1245, mtt@tichy.de
*
* HTICK is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* HTICK is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HTICK; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
#ifndef GLOBAL_H
#define GLOBAL_H
#include <fidoconf/fidoconf.h>
#include <fidoconf/log.h>
extern s_log *htick_log;
extern s_fidoconfig *config;
extern unsigned char quiet; /* Quiet mode */
char *print_ch(int len, char ch);
// variables for config statements
// variables for commandline statements
extern int cmToss;
extern int cmScan;
extern int cmHatch;
extern int hatchReplace;
extern int cmSend;
extern int cmFlist;
extern int cmAnnounce;
extern int cmAnnFile;
extern int cmAnnNewFileecho;
extern int cmClean;
extern int cmAfix;
extern char *flistfile;
extern char *dlistfile;
extern char hatchfile[256];
extern char hatcharea[256];
extern char hatchdesc[256];
extern char replaceMask[256];
extern char sendfile[256];
extern char sendarea[256];
extern char sendaddr[256];
extern char announceArea[256];
extern char announcefile[256];
extern char announcenewfileecho[256];
extern int lock_fd;
extern char *_lockfile;
extern s_addr afixAddr;
extern char *afixCmd;
#endif
syntax highlighted by Code2HTML, v. 0.9.1