mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 09:02:13 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
18
src/irc/flood/autoignore.h
Normal file
18
src/irc/flood/autoignore.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef __AUTOIGNORE_H
|
||||
#define __AUTOIGNORE_H
|
||||
|
||||
typedef struct {
|
||||
char *nick;
|
||||
int timeleft;
|
||||
int level;
|
||||
} AUTOIGNORE_REC;
|
||||
|
||||
GSList *server_autoignores(IRC_SERVER_REC *server);
|
||||
|
||||
void autoignore_add(IRC_SERVER_REC *server, const char *nick, int level);
|
||||
int autoignore_remove(IRC_SERVER_REC *server, const char *mask, int level);
|
||||
|
||||
void autoignore_init(void);
|
||||
void autoignore_deinit(void);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue