1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
/*
* ignore.h: header for ignore.c
*
* Written By Michael Sandrof
*
* Copyright(c) 1990
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*
* @(#)$Id: ignore.h,v 1.4 1994/07/02 02:38:10 mrg Exp $
*/
#ifndef _IGNORE_H_
#define _IGNORE_H_
#include "irc_std.h"
/* declared in ignore.c */
extern int ignore_usernames;
extern char *highlight_char;
extern int check_ignore _((char *, char *, int));
extern int check_ignore_channel _((char *, char *, char *, int));
extern void ignore _((char *, char *, char *));
/* Type of ignored nicks */
#define IGNORE_MSGS 0x0001
#define IGNORE_PUBLIC 0x0002
#define IGNORE_WALLS 0x0004
#define IGNORE_WALLOPS 0x0008
#define IGNORE_INVITES 0x0010
#define IGNORE_NOTICES 0x0020
#define IGNORE_NOTES 0x0040
#define IGNORE_CTCPS 0x0080
#define IGNORE_CRAP 0x0100
#define IGNORE_ALL (IGNORE_MSGS | IGNORE_PUBLIC | IGNORE_WALLS | \
IGNORE_WALLOPS | IGNORE_INVITES | IGNORE_NOTICES | IGNORE_NOTES | \
IGNORE_CTCPS | IGNORE_CRAP)
#define IGNORED 1
#define DONT_IGNORE 2
#define HIGHLIGHTED -1
#endif /* _IGNORE_H_ */
|