- Timestamp:
- 2016-09-20T03:39:05Z (8 years ago)
- Branches:
- master
- Children:
- 725f942
- Parents:
- 67ea361
- git-author:
- jgeboski <jgeboski@…> (22-06-16 18:54:52)
- git-committer:
- jgeboski <jgeboski@…> (20-09-16 03:39:05)
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee.h
r67ea361 ra33ee0f 83 83 void *data; /* Can be used by the IM module. */ 84 84 } bee_user_t; 85 86 typedef struct bee_chat_info { 87 char *title; 88 char *topic; 89 } bee_chat_info_t; 85 90 86 91 /* This one's mostly used so save space and make it easier (cheaper) to … … 185 190 G_MODULE_EXPORT void imcb_chat_invite(struct im_connection *ic, const char *name, const char *who, const char *msg); 186 191 192 G_MODULE_EXPORT void bee_chat_list_finish(struct im_connection *ic); 193 187 194 #endif /* __BEE_H__ */ -
protocols/bee_chat.c
r67ea361 ra33ee0f 274 274 } 275 275 } 276 277 void bee_chat_list_finish(struct im_connection *ic) 278 { 279 cmd_chat_list_finish(ic); 280 } -
protocols/nogaim.h
r67ea361 ra33ee0f 96 96 97 97 GSList *groupchats; 98 GSList *chatlist; 98 99 }; 99 100 … … 263 264 gboolean (* handle_is_self) (struct im_connection *, const char *who); 264 265 266 /* This sets/updates the im_connection->chatlist field with a 267 * bee_chat_info_t GSList. This function should ensure the 268 * bee_chat_list_finish() function gets called at some point 269 * after the chat list is completely updated. 270 */ 271 void (* chat_list) (struct im_connection *, const char *server); 272 265 273 /* Some placeholders so eventually older plugins may cooperate with newer BitlBees. */ 266 274 void *resv1;
Note: See TracChangeset
for help on using the changeset viewer.