forked from PsychoticNinja/irssi
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
16 lines
321 B
C
16 lines
321 B
C
#ifndef __BANS_H
|
|
#define __BANS_H
|
|
|
|
#include "channels.h"
|
|
|
|
void bans_init(void);
|
|
void bans_deinit(void);
|
|
|
|
char *ban_get_mask(CHANNEL_REC *channel, const char *nick);
|
|
|
|
void ban_set_type(const char *type);
|
|
void ban_set(CHANNEL_REC *channel, const char *bans);
|
|
void ban_remove(CHANNEL_REC *channel, const char *ban);
|
|
|
|
#endif
|