/***************************************************************************** * 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 _AREAFIX_H #define _AREAFIX_H #include #define NOTHING 0 #define LIST 1 #define HELP 2 #define ADD 3 #define DEL 4 #define AVAIL 5 #define UNLINK 6 #define PAUSE 7 #define RESUME 8 #define INFO 9 #define RESEND 10 #define LINKED 11 #if defined(ERROR) #undef ERROR #endif #define ERROR 255 int processFileFix(s_message *msg); void ffix(s_addr addr, char *cmd); int autoCreate(char *c_area, char *descr, s_addr* pktOrigAddr, s_addr* dwLink); #endif