Changeset 50e1776 for protocols/nogaim.h
- Timestamp:
- 2007-11-19T22:23:58Z (13 years ago)
- Branches:
- master
- Children:
- ef5c185
- Parents:
- ebb95b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.h
rebb95b6 r50e1776 110 110 * chat using imcb_chat_new(). */ 111 111 char *title; 112 /* Use imcb_chat_topic() to change this variable otherwise the user 113 * won't notice the topic change. */ 114 char *topic; 112 115 char joined; 113 116 /* This is for you, you can add your own structure here to extend this … … 212 215 struct groupchat * 213 216 (* chat_join) (struct im_connection *, char *room, char *nick, char *password); 217 /* Change the topic, if supported. Note that BitlBee expects the IM 218 server to confirm the topic change with a regular topic change 219 event. If it doesn't do that, you have to fake it to make it 220 visible to the user. */ 221 void (* chat_topic) (struct groupchat *, char *message); 214 222 215 223 /* You can tell what away states your protocol supports, so that … … 293 301 /* To tell BitlBee 'who' said 'msg' in 'c'. 'flags' and 'sent_at' can be 0. */ 294 302 G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at ); 303 /* To tell BitlBee 'who' changed the topic of 'c' to 'topic'. */ 304 G_MODULE_EXPORT void imcb_chat_topic( struct groupchat *c, char *who, char *topic ); 295 305 G_MODULE_EXPORT void imcb_chat_free( struct groupchat *c ); 296 306
Note: See TracChangeset
for help on using the changeset viewer.