- Timestamp:
- 2010-04-02T02:29:45Z (15 years ago)
- Branches:
- master
- Children:
- 231b08b
- Parents:
- e63507a
- Location:
- protocols
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/account.c
re63507a rfb117aee 217 217 { 218 218 account_t *a, *l = NULL; 219 struct chat *c, *nc;220 219 221 220 if( acc->ic ) -
protocols/bee.h
re63507a rfb117aee 91 91 /* Not implemented yet! */ G_MODULE_EXPORT void imcb_buddy_times( struct im_connection *ic, const char *handle, time_t login, time_t idle ); 92 92 /* Call when a handle says something. 'flags' and 'sent_at may be just 0. */ 93 G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, const char *handle, char *msg, uint32_tflags, time_t sent_at );93 G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, const char *handle, char *msg, guint32 flags, time_t sent_at ); 94 94 95 95 #endif /* __BEE_H__ */ -
protocols/bee_user.c
re63507a rfb117aee 92 92 msg = buf; 93 93 } 94 95 st = bu->ic->acc->prpl->buddy_msg( bu->ic, bu->handle, msg, flags ); 94 else 95 buf = g_strdup( msg ); 96 97 st = bu->ic->acc->prpl->buddy_msg( bu->ic, bu->handle, buf, flags ); 96 98 g_free( buf ); 97 99 -
protocols/nogaim.c
re63507a rfb117aee 37 37 #include "nogaim.h" 38 38 #include "chat.h" 39 40 static int remove_chat_buddy_silent( struct groupchat *b, const char *handle );41 39 42 40 GSList *connections; … … 475 473 }; 476 474 475 #if 0 477 476 static void imcb_ask_auth_cb_no( void *data ) 478 477 { … … 494 493 g_free( cbd ); 495 494 } 495 #endif 496 496 497 497 void imcb_ask_auth( struct im_connection *ic, const char *handle, const char *realname ) … … 516 516 517 517 518 #if 0 518 519 static void imcb_ask_add_cb_no( void *data ) 519 520 { … … 530 531 return imcb_ask_add_cb_no( data ); 531 532 } 533 #endif 532 534 533 535 void imcb_ask_add( struct im_connection *ic, const char *handle, const char *realname ) … … 597 599 return c; 598 600 #endif 601 return NULL; 599 602 } 600 603 … … 783 786 } 784 787 788 #if 0 785 789 static int remove_chat_buddy_silent( struct groupchat *b, const char *handle ) 786 790 { 787 #if 0788 791 GList *i; 789 792 … … 801 804 i = i->next; 802 805 } 803 #endif804 806 805 807 return 0; 806 808 } 809 #endif 807 810 808 811
Note: See TracChangeset
for help on using the changeset viewer.