Changeset f6c963b for protocols/yahoo
- Timestamp:
- 2007-04-21T04:13:21Z (18 years ago)
- Branches:
- master
- Children:
- d11dd2f
- Parents:
- b0eaa5b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo.c
rb0eaa5b rf6c963b 174 174 } 175 175 176 static int byahoo_ send_im( struct im_connection *ic, char *who, char *what, int flags )176 static int byahoo_buddy_msg( struct im_connection *ic, char *who, char *what, int flags ) 177 177 { 178 178 struct byahoo_data *yd = ic->proto_data; … … 299 299 } 300 300 301 static void byahoo_chat_ send( struct groupchat *c, char *message, int flags )301 static void byahoo_chat_msg( struct groupchat *c, char *message, int flags ) 302 302 { 303 303 struct byahoo_data *yd = (struct byahoo_data *) c->ic->proto_data; … … 354 354 ret->logout = byahoo_logout; 355 355 356 ret-> send_im = byahoo_send_im;356 ret->buddy_msg = byahoo_buddy_msg; 357 357 ret->get_info = byahoo_get_info; 358 358 ret->away_states = byahoo_away_states; … … 362 362 ret->send_typing = byahoo_send_typing; 363 363 364 ret->chat_ send = byahoo_chat_send;364 ret->chat_msg = byahoo_chat_msg; 365 365 ret->chat_invite = byahoo_chat_invite; 366 366 ret->chat_leave = byahoo_chat_leave;
Note: See TracChangeset
for help on using the changeset viewer.