diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-04-09 01:40:38 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-04-09 01:40:38 +0100 |
commit | cca06921729ecd1ab4beaecfef001a218e5d0010 (patch) | |
tree | 77902d63f4a73535ea942b149e2428a345f8ca32 /protocols/nogaim.h | |
parent | 7a90d02eede836f60a119cf516b145c8bf601d3c (diff) |
Added imcb_chat_nick_hint() and use it in the Twitter module to get saner
channel names.
This also closes bug #577, making the Skype module a bit nicer.
Diffstat (limited to 'protocols/nogaim.h')
-rw-r--r-- | protocols/nogaim.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/nogaim.h b/protocols/nogaim.h index 3c5e539f..48a80413 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -301,6 +301,7 @@ G_MODULE_EXPORT void imcb_chat_invited( struct im_connection *ic, char *handle, * the user her/himself. At that point the group chat will be visible to the * user, too. */ G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle ); +G_MODULE_EXPORT void imcb_chat_name_hint( struct groupchat *c, const char *name ); G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, const char *handle ); /* To remove a handle from a group chat. Reason can be NULL. */ G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, const char *handle, const char *reason ); |