]> jfr.im git - solanum.git/blame - include/bandbi.h
Remove Windows support
[solanum.git] / include / bandbi.h
CommitLineData
83595e60
AC
1#ifndef INCLUDED_bandbi_h
2#define INCLUDED_bandbi_h
3
4void init_bandb(void);
5
6typedef enum
7{
8 BANDB_KLINE,
9 BANDB_DLINE,
10 BANDB_XLINE,
11 BANDB_RESV,
12 LAST_BANDB_TYPE
13} bandb_type;
14
15void bandb_add(bandb_type, struct Client *source_p, const char *mask1,
16 const char *mask2, const char *reason, const char *oper_reason, int perm);
17void bandb_del(bandb_type, const char *mask1, const char *mask2);
18void bandb_rehash_bans(void);
19#endif