Changeset f6c963b for protocols/yahoo


Ignore:
Timestamp:
2007-04-21T04:13:21Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d11dd2f
Parents:
b0eaa5b
Message:

Renamed some more prpl functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo.c

    rb0eaa5b rf6c963b  
    174174}
    175175
    176 static int byahoo_send_im( struct im_connection *ic, char *who, char *what, int flags )
     176static int byahoo_buddy_msg( struct im_connection *ic, char *who, char *what, int flags )
    177177{
    178178        struct byahoo_data *yd = ic->proto_data;
     
    299299}
    300300
    301 static void byahoo_chat_send( struct groupchat *c, char *message, int flags )
     301static void byahoo_chat_msg( struct groupchat *c, char *message, int flags )
    302302{
    303303        struct byahoo_data *yd = (struct byahoo_data *) c->ic->proto_data;
     
    354354        ret->logout = byahoo_logout;
    355355       
    356         ret->send_im = byahoo_send_im;
     356        ret->buddy_msg = byahoo_buddy_msg;
    357357        ret->get_info = byahoo_get_info;
    358358        ret->away_states = byahoo_away_states;
     
    362362        ret->send_typing = byahoo_send_typing;
    363363       
    364         ret->chat_send = byahoo_chat_send;
     364        ret->chat_msg = byahoo_chat_msg;
    365365        ret->chat_invite = byahoo_chat_invite;
    366366        ret->chat_leave = byahoo_chat_leave;
Note: See TracChangeset for help on using the changeset viewer.