diff options
author | TingPing <tngpng@gmail.com> | 2013-03-21 15:02:32 -0700 |
---|---|---|
committer | TingPing <tngpng@gmail.com> | 2013-03-21 15:02:32 -0700 |
commit | d37ef26104d3b302d983cf444595f8226e0bbb30 (patch) | |
tree | 41f38be53105089f26c84f619024618635af2205 /src/common/fe.h | |
parent | c5404b8e25afdc30b5bcafdd2a21b169443e00cc (diff) | |
parent | ec576f315aacd314fd2688a553efb9a14761a2c5 (diff) |
Merge pull request #459 from RichardHitt/banlist1
Redesign the Ban List window. Closes #303, closes #342, closes #427
Diffstat (limited to 'src/common/fe.h')
-rw-r--r-- | src/common/fe.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/fe.h b/src/common/fe.h index 4903ef0e..337c4b47 100644 --- a/src/common/fe.h +++ b/src/common/fe.h @@ -59,9 +59,8 @@ int fe_is_chanwindow (struct server *serv); void fe_add_chan_list (struct server *serv, char *chan, char *users, char *topic); void fe_chan_list_end (struct server *serv); -int fe_is_banwindow (struct session *sess); -void fe_add_ban_list (struct session *sess, char *mask, char *who, char *when, int is_exemption); -void fe_ban_list_end (struct session *sess, int is_exemption); +gboolean fe_add_ban_list (struct session *sess, char *mask, char *who, char *when, int rplcode); +gboolean fe_ban_list_end (struct session *sess, int rplcode); void fe_notify_update (char *name); void fe_notify_ask (char *name, char *networks); void fe_text_clear (struct session *sess, int lines); |