diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-23 10:09:16 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-23 10:09:16 +0200 |
commit | da3b53657c8e554fc8c28c8ef61ef44492da24dd (patch) | |
tree | 35c434510dec74965229340f9b804511a5a608b5 /protocols/nogaim.h | |
parent | 226fce105c1189bde1aa321b494494d49b463e90 (diff) |
Added bim_ functions for block/allow list management to keep gc->permit/deny
up-to-date at run-time.
Diffstat (limited to 'protocols/nogaim.h')
-rw-r--r-- | protocols/nogaim.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/nogaim.h b/protocols/nogaim.h index 3b55fe3b..54a1835b 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -197,6 +197,11 @@ int bim_set_away( struct gaim_connection *gc, char *away ); int bim_buddy_msg( struct gaim_connection *gc, char *handle, char *msg, int flags ); int bim_chat_msg( struct gaim_connection *gc, int id, char *msg ); +void bim_add_allow( struct gaim_connection *gc, char *handle ); +void bim_rem_allow( struct gaim_connection *gc, char *handle ); +void bim_add_block( struct gaim_connection *gc, char *handle ); +void bim_rem_block( struct gaim_connection *gc, char *handle ); + void nogaim_init(); char *set_eval_away_devoice( irc_t *irc, set_t *set, char *value ); |