/* * Tlf - contest logging program for amateur radio operators * Copyright (C) 2001-2002-2003 Rein Couperus * * This program 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 of the License, or * (at your option) any later version. * * This program 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 Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #include #include #include #include #include #include #include #if defined (TLF_H) /* do nothing, already defined */ #else #define TLF_H #ifdef HAVE_CONFIG_H #include #endif #define NO_KEYER 0 #define LPT_KEYER 1 #define COM1_KEYER 2 #define NET_KEYER 3 #define MFJ1278_KEYER 4 #define ORION_KEYER 5 #define K2_KEYER 6 #define GMFSK 7 #define SINGLE 0 /* single op */ #define MULTI 1 /* multi op / single tx */ #define TELNET_INTERFACE 1 #define TNC_INTERFACE 2 #define NETWORK_INTERFACE 3 #define FIFO_INTERFACE 4 #define NOCLUSTER 0 /* no cluster info */ #define MAP 1 /* filter follows band */ #define SPOTS 2 /* all spots */ #define CLUSTER 3 /* full cluster info */ #define FREQWINDOW 4 /* M/M frequencies */ #define SHORTCW 1 /* short cw characters in exchange (e.g. 0 = T, 9 = N) */ #define LONGCW 0 #define SEARCHWINDOW 1 /* searchflg on */ #define CQ 1 /* cqmode on */ #define S_P 0 /* S&P mode on */ #define SEND_DE 1 /* demode on */ #define CONTEST 1 /* contest mode on */ #define FILTER_ANN 1 /* filter announcements */ #define FILTER_DX 3 #define FILTER_ALL 0 #define FILTER_TALK 2 #define CWMODE 0 #define SSBMODE 1 #define DIGIMODE 2 #define BAND160 32 #define BAND80 16 #define BAND40 8 #define BAND20 4 #define BAND15 2 #define BAND10 1 #define BANDINDEX_160 0 #define BANDINDEX_80 1 #define BANDINDEX_40 2 #define BANDINDEX_30 3 #define BANDINDEX_20 4 #define BANDINDEX_17 5 #define BANDINDEX_15 6 #define BANDINDEX_12 7 #define BANDINDEX_10 8 #define NBANDS 9 // not yet used everywhere, many places have hardcode 9 (or 8, being the maximum band index) #define DUPECOLOR 5 #define NORMCOLOR 4 #define ISDUPE 1 #define NODUPE 0 #define MAX_QSOS 15000 /* internal qso array */ #define MAX_DATALINES 700 /* from ctydb.dat */ #define MAX_DBLINES 6000 /* exceptioncalls from ctydb.dat */ #define MAX_CALLS 5000 /* max nr of calls in dupe array */ #define MAX_MULTS 800 /* max nr of mults in mults array */ #define MAX_SPOTS 200 /* max nr. of spots in spotarray */ #define MAX_CALLMASTER 40000 /* max number of calls in callmaster array */ #define MAX_COMMANDS 155 #define EDITOR_JOE 0 #define EDITOR_VI 1 #define EDITOR_E3 2 #define EDITOR_MC 3 #define CW_SPEEDS "06121416182022242628303234363840424446485060" #endif #if defined (TLN_LOGLINE) /* do nothing, already defined */ #else #define TLN_LOGLINE struct tln_logline { struct tln_logline *next; struct tln_logline *prev; char *text; int attr; } ; #endif