http://www.azstarnet.com/~ymg/files/slsnif-0.4.0.tar.gz
[slsnif.git] / src / rcfile.h
1 /*  rcfile.h
2  *  Copyright (C) 2001 Yan "Warrior" Gurtovoy (ymg@azstarnet.com)
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 #define RCFNAME  ".slsnifrc"
20 #define NAMELEN  11
21 #define VALUELEN 256
22 #define ON       "ON"
23 #define OFF      "OFF"
24
25 typedef struct _rc_struct {
26     char *name;
27     void (*fn)();
28 } rc_struct;
29
30 /* external functions */
31 extern char *getColor(char *name);
32
33 /* callback function prototypes */
34 void rc_get_bytes(tty_struct *ptr, char *value);
35 void rc_get_tstamp(tty_struct *ptr, char *value);
36 void rc_get_nolock(tty_struct *ptr, char *value);
37 void rc_get_color(tty_struct *ptr, char *value);
38 void rc_get_timecolor(tty_struct *ptr, char *value);
39 void rc_get_bytescolor(tty_struct *ptr, char *value);
40
41 rc_struct rc_data[] = {
42 /*  identificator,  function to call */
43     {"TOTALBYTES",  rc_get_bytes},
44     {"TIMESTAMP",   rc_get_tstamp},
45     {"NOLOCK",      rc_get_nolock},
46     {"COLOR",       rc_get_color},
47     {"TIMECOLOR",   rc_get_timecolor},
48     {"BYTESCOLOR",  rc_get_bytescolor},
49     {NULL,         NULL}
50 };