Changes in protocols/nogaim.h [acd61b9:ef5c185]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.h
racd61b9 ref5c185 61 61 #define OPT_AWAY 0x00000004 62 62 #define OPT_DOES_HTML 0x00000010 63 #define OPT_LOCALBUDDY 0x00000020 /* For nicks local to one groupchat */ 63 64 #define OPT_TYPING 0x00000100 /* Some pieces of code make assumptions */ 64 65 #define OPT_THINKING 0x00000200 /* about these values... Stupid me! */ … … 91 92 irc_t *irc; 92 93 93 struct groupchat * conversations;94 struct groupchat *groupchats; 94 95 }; 95 96 … … 104 105 GList *ignored; 105 106 106 /* BitlBee */107 107 struct groupchat *next; 108 108 char *channel; … … 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 *topic); 214 222 215 223 /* You can tell what away states your protocol supports, so that … … 259 267 /* Buddy management */ 260 268 /* This function should be called for each handle which are visible to the 261 * user, usually after a login. */ 269 * user, usually after a login, or if the user added a buddy and the IM 270 * server confirms that the add was successful. Don't forget to do this! */ 262 271 G_MODULE_EXPORT void imcb_add_buddy( struct im_connection *ic, char *handle, char *group ); 263 272 G_MODULE_EXPORT void imcb_remove_buddy( struct im_connection *ic, char *handle, char *group ); 264 273 G_MODULE_EXPORT struct buddy *imcb_find_buddy( struct im_connection *ic, char *handle ); 265 274 G_MODULE_EXPORT void imcb_rename_buddy( struct im_connection *ic, char *handle, char *realname ); 275 G_MODULE_EXPORT void imcb_buddy_nick_hint( struct im_connection *ic, char *handle, char *nick ); 266 276 267 277 /* Buddy activity */ … … 275 285 G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, u_int32_t flags, time_t sent_at ); 276 286 G_MODULE_EXPORT void imcb_buddy_typing( struct im_connection *ic, char *handle, u_int32_t flags ); 287 G_MODULE_EXPORT void imcb_clean_handle( struct im_connection *ic, char *handle ); 277 288 278 289 /* Groupchats */ … … 290 301 /* To tell BitlBee 'who' said 'msg' in 'c'. 'flags' and 'sent_at' can be 0. */ 291 302 G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, u_int32_t flags, time_t sent_at ); 292 G_MODULE_EXPORT void imcb_chat_removed( struct groupchat *c ); 293 struct groupchat *chat_by_channel( char *channel ); 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, time_t set_at ); 305 G_MODULE_EXPORT void imcb_chat_free( struct groupchat *c ); 294 306 295 307 /* Actions, or whatever. */
Note: See TracChangeset
for help on using the changeset viewer.